이 글은 Centos에서 openssl, cur, php를 업데이트하는 방법을 주로 소개합니다. 이제 참고할 만한 내용이 있어서 공유합니다.
PHP5 Openssl1.1은 지원되지 않습니다
1 wget https://www.openssl.org/source/openssl-1.0.2o.tar.gz 2 tar zxvf openssl-1.0.2o.tar.gz 3 cd openssl-1.0.2o 4 ./config -fPIC --prefix=/usr/local/openssl enable-shared 注释: --prefix:指定安装目录 -fPIC:编译openssl的静态库 enable-shared:编译动态库 5 ./config -t 6 make 7 make install 8 创建软连接 ln -s /usr/local/openssl/bin/openssl /usr/bin/openssl ln -s /usr/local/openssl/include/openssl /usr/include/openssl echo "/usr/local/openssl/lib" >> /etc/ld.so.conf 9 修改系统自带的库 ln -s /usr/local/openssl/lib/libssl.so /usr/lib64/libssl.so
1 wget https://curl.haxx.se/download/curl-7.60.0.tar.gz 2 tar -zxvf curl-7.60.0.tar.gz 3 cd curl-7.60.0 4 ./configure --with-ssl=/usr/local/openssl --prefix=/usr/local/curl 5 make & make install 6 创建软连接 ln -s /usr/local/curl/bin/curl /usr/bin/curl ln -s /usr/local/curl/include/curl /usr/include/curl echo "/usr/local/curl/lib" >> /etc/ld.so.conf 7 curl -V
1. wget http://cn.php.net/distributions/php-5.6.36.tar.gz 2. tar zxvf php-5.6.36.tar.gz 3. cd php-5.6.36 4 配置: ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc \ --with-mysql=mysqlnd --with-mysqli=mysqlnd \ --enable-fpm --enable-mbstring=all \ --with-curl=/usr/local/curl \ --with-openssl=/usr/local/openssl 5 make && make install 6 停止php服务: killall php-fpm 7 重启php服务: ./php/sbin/php-fpm -c /usr/local/php/etc/php.ini -y /usr/local/php/etc/php-fpm.conf
위 내용은 이 글의 전체 내용입니다. 모든 분들의 학습에 도움이 되었으면 좋겠습니다. 꼭 주목해주세요. 더 많은 관련 콘텐츠를 보려면 PHP로 중국어 웹사이트를 방문하세요!
관련 권장사항:
Laravel 5.6에서 Swoole의 코루틴 데이터베이스 쿼리 사용
위 내용은 Centos에서 openssl, cur 및 php를 업데이트하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!