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

來源:互聯網
上載者:User
這篇文章主要介紹了關於Centos中更新openssl、cur和php的方法,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

Centos中更新openssl、cur、php

PHP5 不支援 openssl1.1

openssl 降版本

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

以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.