CentOS下现将NSS转换成过程

2016-12-07 22:15:45 1623

先查看curl版本会发现并不是openssl

curl -V

libcurl/7.19.7 NSS/3.35 zlib/1.2.3

 

因为centos 6.5(我是用的版本,其他版本没有测试)默认安装curl是用ssl的版本是NSS

所以需要对Curl进行重新编译

先去官方下载 http://www.landui.com/download/archeology/ 

可以同样下载是7.19.7版本,也可以下载更高版本,进行重新编译,这里我下载的是7.35.0版本。

 

./configure --prefix=/usr --without-nss --with-ssl

make && make install

 

最后不要忘记执行

// ldconfig

echo "/usr/local/lib" >> /etc/ld.so.conf && ldconfig

 

再次查看curl版本

curl -V

curl 7.35.0 (x86_64-unknown-linux-gnu) libcurl/7.35.0 OpenSSL/1.0.1e zlib/1.2.3

Protocols: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp smtp smtps telnet tftp 

Features: IPv6 Largefile NTLM NTLM_WB SSL libz 

 

最后重新启动php-fpm nginx

service php-fpm restart

service nginx restart


提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: