摘要:中更新不支持降版本注释指定安装目录编译的静态库编译动态库创建软连接修改系统自带的库重新编译创建软连接安装配置停止服务重启服务
Centos中更新openssl、cur、php
PHP5 不支持 openssl1.1openssl 降版本
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.socurl 重新编译
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安装php 5.6.36
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
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/28812.html
摘要:提示如果你真打算采用这种编译安装的话,请至少安排半天时间来完成。在安装完成后可以再设置小点内存跑安装的时候请按顺序安装。 我们为什么采用LNMP这种架构?采用Linux、PHP、MySQL的优点我们不必多说。 Nginx是一个小巧而高效的Linux下的Web服务器软件,是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,已经在一些俄罗斯的大型网站上运行...
摘要:提示如果你真打算采用这种编译安装的话,请至少安排半天时间来完成。在安装完成后可以再设置小点内存跑安装的时候请按顺序安装。 我们为什么采用LNMP这种架构?采用Linux、PHP、MySQL的优点我们不必多说。 Nginx是一个小巧而高效的Linux下的Web服务器软件,是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,已经在一些俄罗斯的大型网站上运行...
阅读 1600·2021-09-02 09:55
阅读 1067·2019-08-30 13:19
阅读 1376·2019-08-26 13:51
阅读 1423·2019-08-26 13:49
阅读 2321·2019-08-26 12:13
阅读 430·2019-08-26 11:52
阅读 1876·2019-08-26 10:58
阅读 3063·2019-08-26 10:19