首页 > 编程 > PHP > 正文

Centos中更新openssl、cur和php的方法

2020-03-22 19:57:37
字体:
来源:转载
供稿:网友
这篇文章主要介绍了关于Centos中更新openssl、cur和php的方法,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下

Centos中更新openssl、cur、phpPHP5 不支持 openssl1.1openssl 降版本
1 wget https://www.openssl.org/source/openssl-1.0.2o.tar.gz2 tar zxvf openssl-1.0.2o.tar.gz3 cd openssl-1.0.2o4 ./config -fPIC --prefix=/usr/local/openssl enable-shared 注释: --prefix:指定安装目录 -fPIC:编译openssl的静态库 enable-shared:编译动态库5 ./config -t6 make 7 make install8 创建软连接  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.conf9 修改系统自带的库 ln -s /usr/local/openssl/lib/libssl.so /usr/lib64/libssl.so
curl 重新编译
1 wget https://curl.haxx.se/download/curl-7.60.0.tar.gz2 tar -zxvf curl-7.60.0.tar.gz 3 cd curl-7.60.04 ./configure --with-ssl=/usr/local/openssl --prefix=/usr/local/curl5 make make install6 创建软连接 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.conf7 curl -V
安装php 5.6.36
1. wget http://cn.php.net/distributions/php-5.6.36.tar.gz2. tar zxvf php-5.6.36.tar.gz3. cd php-5.6.364 配置:./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/openssl5 make make install6 停止php服务:  killall php-fpm7 重启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的协程数据库查询

PHP通过反射来得到类以及一些基本的应用

以上就是Centos中更新openssl、cur和php的方法的详细内容,PHP教程

郑重声明:本文版权归原作者所有,转载文章仅为传播更多信息之目的,如作者信息标记有误,请第一时间联系我们修改或删除,多谢。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表