PHP-把curl扩展的SSL版本从NSS更改为OpenSSL

首先确认curl的SSL版本是不是openssl

curl --version
curl 7.19.7 (x86_64-redhat-linux-gnu) /7.19.7 /3.19.1 Basic ECC /1.2.3 /1.18 /1.4.2
Protocols: tftp ftp telnet dict ldap ldaps  file  ftps scp sftp 
Features: GSS-Negotiate IDN IPv6 Largefile NTLM SSL libz

并没有OpenSSL

安装

cd/src
wget
tar-zxvfcurl-7.58.0.tar.gz
cdcurl-7.58.0
./configure/--without-nss--with-ssl
make&&makeinstall

备份默认的curl二进制文件

mv /curl /curl.bak

做一个新的curl软链

ln -s /curl /curl

再次查看curl版本和支持情况

curl--version
curl 7.58.0 (x86_64-pc-linux-gnu) /7.58.0 /1.0.1e /1.2.3
Release-Date: 2018-01-24
Protocols: dict file ftp ftps gopher   imap imaps pop3 pop3s rtsp smb smbs smtp smtps telnet tftp 
Features: AsynchDNS IPv6 Largefile NTLM NTLM_WB SSL libz UnixSockets 

已经有 OpenSSL

进入之前安装php的源码目录,重新编译php

找到之前安装的编译参数

/php -i | grep configure

或者找到文件 /php-config,其中 configure_options 就为编译参数

php源码目录下执行

./configure /php /curl 
--with-freetype-dir --with-gd --with-gettext --with-iconv-dir 
--with-kerberos --with-libdir=lib64 --with-libxml-dir --with-mysqli 
--with-openssl --with-pcre-regex --with-pdo-mysql --with-pdo-sqlite 
--with-pear --with-png-dir --with-jpeg-dir --with-xmlrpc --with-xsl 
--with-zlib --with-bz2 --with-mhash --enable-fpm --enable-bcmath 
--enable-libxml --enable-inline-optimization --enable-gd-native-ttf 
--enable-mbregex --enable-mbstring --enable-opcache --enable-pcntl 
--enable-shmop --enable-soap --enable-sockets --enable-sysvsem 
--enable-sysvshm --enable-xml --enable-zip
 
make
make install

使用phpinfo查看是否支持openssl

新的

转载至:

最后更新:2023/04/11
免责声明:本站部分内容由互联网用户自发贡献自行上传,本网站不拥有所有权,也不承认相关法律责任。
如果您发现本社区中有涉嫌抄袭的内容请发送邮件至:Hi@r1yun.cn进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。

在线评论