国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

【經驗】Centos中更新openssl、cur、php

hzx / 1370人閱讀

摘要:中更新不支持降版本注釋指定安裝目錄編譯的靜態庫編譯動態庫創建軟連接修改系統自帶的庫重新編譯創建軟連接安裝配置停止服務重啟服務

Centos中更新openssl、cur、php
PHP5 不支持 openssl1.1
openssl 降版本
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
curl 重新編譯
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

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/28812.html

相關文章

  • lnmp編譯安裝教程

    摘要:提示如果你真打算采用這種編譯安裝的話,請至少安排半天時間來完成。在安裝完成后可以再設置小點內存跑安裝的時候請按順序安裝。 我們為什么采用LNMP這種架構?采用Linux、PHP、MySQL的優點我們不必多說。 Nginx是一個小巧而高效的Linux下的Web服務器軟件,是由 Igor Sysoev 為俄羅斯訪問量第二的 Rambler.ru 站點開發的,已經在一些俄羅斯的大型網站上運行...

    yanbingyun1990 評論0 收藏0
  • lnmp編譯安裝教程

    摘要:提示如果你真打算采用這種編譯安裝的話,請至少安排半天時間來完成。在安裝完成后可以再設置小點內存跑安裝的時候請按順序安裝。 我們為什么采用LNMP這種架構?采用Linux、PHP、MySQL的優點我們不必多說。 Nginx是一個小巧而高效的Linux下的Web服務器軟件,是由 Igor Sysoev 為俄羅斯訪問量第二的 Rambler.ru 站點開發的,已經在一些俄羅斯的大型網站上運行...

    marser 評論0 收藏0

發表評論

0條評論

hzx

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<