TOP ▲
itcore TOP
> TIPS
> centos5_curl.php
タグ:centos5 curl インストール centos5 curl ソースインストール | itcore 2019年
現在バージョン
# curl --version
curl 7.15.5 (x86_64-redhat-linux-gnu) libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5
インストール
# yum erase -y curl
# cd /root
# wget https://curl.haxx.se/download/curl-7.47.1.tar.gz --no-check-certificate
※OpenSSLの問題でうまくいかない場合はPCでダウンロードしてscpする。
# tar zxvfp curl-7.47.1.tar.gz
# cd curl-7.47.1
# ./configure
# make
# make test
TESTDONE: 761 tests out of 761 reported OK: 100%
# make install
# ln -s /usr/local/bin/curl /usr/bin/curl
新バージョン
# curl --version
curl 7.47.1 (x86_64-pc-linux-gnu) libcurl/7.47.1 OpenSSL/1.0.2r zlib/1.2.3
Protocols: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp s