linux下nginx多版本php共存

2021-09-24 11:00:46 字數 2980 閱讀 9920

2019獨角獸企業重金招聘python工程師標準》

應用環境

lnmp的環境,當前php版本5.3.8,遇到乙個應用需求只支援php 5.2.x,又希望保持現有應用還是用php 5.3.8。也就是說需要兩個版本的php同時存在,供nginx根據需要呼叫不同版本。

思路nginx是通過php-fastcgi與php互動的。而php-fastcgi執行後會通過檔案、或本地埠兩種方式進行監聽,在nginx中配置相應的fastcgi監聽埠或檔案即實現nginx請求對php的解釋。

既然php-fastcgi是監聽埠和檔案的,那就可以讓不同版本的php-fastcgi同時執行,監聽不同的埠或檔案,nginx中根據需求配置呼叫不同的php-fastcgi埠或檔案,即可實現不同版本php共存了。

配置記錄

下面記錄簡單的配置流程,基於已經安裝了lnmp的debian環境。當前版本的php是5.3.8,位於/usr/local/php。

幫助mkdir ~/php5.2

cd ~/php5.2

wget -c

wget -c

2.解壓php-5.2.14,並打上php-fpm的補丁:

幫助tar zxvf php-5.2.14.tar.gz

gzip -cd php-5.2.14-fpm-0.5.14.diff.gz | patch -d php-5.2.14 -p1

幫助export php_autoconf=/usr/local/autoconf-2.13/bin/autoconf¬

export php_autoheader=/usr/local/autoconf-2.13/bin/autoheader

3.編譯安裝php-5.2.14在新的路徑(/usr/local/php-5.2.14)下,注意–prefix、–with-config-file-path的路徑,並且開啟fastcgi和fpm選項:

幫助cd php-5.2.14/

./buildconf --force

./configure --prefix=/usr/local/php-5.2.14 --with-config-file-path=/usr/local/php-5.2.14/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-fastcgi --enable-fpm

make zend_extra_libs='-liconv'

make install

4.設定/usr/local/php-5.2.14/etc/php-fpm.conf,監聽埠:

幫助127.0.0.1:9001

或者監聽檔案:

幫助/path/to/unix/socket

其他引數根據伺服器環境和需求自行定製。

5.啟動php-fpm,以後可以通過php-fpm進行管理:

幫助/usr/local/php-5.2.14/sbin/php-fpm start

字php5.3.3後,php已經將php-fpm繼承到php中,而且內建的php-fpm預設不支援(start|stop|reload)的平滑啟動引數,需要使用官方源**中提供的啟動指令碼來控制:

幫助cp -f (php -5.3.x-source-dir)/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm

chmod 755 /etc/init.d/php-fpm

/etc/init.d/php-fpm start

php-fpm支援的操作:

start,啟動php的fastcgi程序。

stop,強制終止php的fastcgi程序。

quit,平滑終止php的fastcgi程序。

restart, 重啟php的fastcgi程序。

logrotate, 重新啟用log檔案。

5.3.3的php-fpm指令碼支援的操作:start|stop|force-quit|restart|reload|status

幫助vi /usr/local/php-5.2.14/etc/php.ini

/usr/local/php-5.2.14/sbin/php-fpm reload

7.修改nginx配置,對需要的服務配置使用php-5.2.14:

幫助location ~ .*.(php|php5)?$

fastcgi_pass  127.0.0.1:9001;

fastcgi_index index.php;

include fcgi.conf;

8.記錄一下自己編譯php5.5.10使用的配置

幫助./configure --prefix=/usr/local/php-5.5.10 --with-config-file-path=/usr/local/php-5.5.10/etc --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-bz2 --with-curl=/usr/bin --enable-ftp --enable-sockets --disable-ipv6 --with-gd --with-jpeg-dir=/usr/local --with-png-dir=/usr/local --with-freetype-dir=/usr/local --enable-gd-native-ttf --with-iconv-dir=/usr/local --enable-mbstring --enable-calendar --with-gettext --with-libxml-dir=/usr/local --with-zlib --with-pdo-mysql=mysqlnd --enable-dom --enable-xml --enable-fpm --with-libdir=lib64 --with-mcrypt=/usr/bin --enable-zip --enable-soap --enable-mbstring  --with-gd --with-openssl --enable-pcntl --with-xmlrpc --enable-opcache

linux下nginx多版本php共存

lnmp的環境,當前php版本5.3.8,遇到乙個應用需求只支援php 5.2.x,又希望保持現有應用還是用php 5.3.8。也就是說需要兩個版本的php同時存在,供nginx根據需要呼叫不同版本。nginx是通過php fastcgi與php互動的。而php fastcgi執行後會通過檔案 或本...

linux下多python版本

輸入python 命令檢視當前系統預設python版本,輸入exit 退出python環境 which python 查詢預設python的安裝路徑 預設在 usr bin python 這個python是可執行的python,不是資料夾 ps 這一步可能需要,可能不需要,若環境事先已經安裝好了,則...

Linux環境Nginx安裝多版本PHP

關於linux環境nginx安裝與除錯以及php安裝參考此文即可 linux版本 64位centos 6.4 nginx版本 nginx1.8.0 php版本 php5.5.28 php5.4.44 所謂多版本多版本php就是php5.4和5.5以及其他版本在同一臺伺服器。假如php5.5是主版本已...