我们在安装配置服务器LNPM环境时应该考虑到PHP多版本并存的问题,下面是实现Linux系统下为Nginx安装多版本PHP的实现方法

linux版本:64位CentOS 6.4

Nginx版本:nginx1.8.0

php版本:php5.5.28 & php5.4.44

注意假如php5.5是主版本已经安装在/usr/local/php目录下,那么再安装其他版本的php再指定不同安装目录即可。

安装PHP

# wget http://cn2.php.net/get/php-5.4.44.tar.gz/from/this/mirror

# tar zxvf php-5.4.44.tar.gz

# cd php-5.4.44

#./configure --prefix=/usr/local/php5.4.44

--with-curl

--with-freetype-dir

--with-gd

--with-gettext

--with-iconv-dir

--with-kerberos

--with-libdir=lib64

--with-libxml-dir

--with-mysql

--with-mysqli

--with-openssl

--with-pcre-regex

--with-pdo-mysql

--with-pdo-sqlite

--with-pear

--with-png-dir

--with-xmlrpc

--with-xsl

--with-zlib

--enable-fpm

--enable-bcmath

--enable-libxml

--enable-inline-optimization

--enable-gd-native-ttf

--enable-mbregex

--enable-mbstring

--enable-pcntl

--enable-shmop

--enable-soap

--enable-sockets

--enable-sysvsem

--enable-xml

--enable-zip

# make && make install

# cp -R ./sapi/fpm/php-fpm.conf /usr/local/php5.4.44/etc/php-fpm.conf

# cp php.ini-development /usr/local/php5.4.44/lib/php.ini

# cp -R ./sapi/fpm/php-fpm /etc/init.d/php-fpm5.4.44

修改php-fpm.conf的侦听端口为9001,因为主版本5.5.28是侦听9000。

; Note: This value is mandatory.

listen = 127.0.0.1:9001

启动php-fpm

# /etc/init.d/php-fpm5.4.44

php安装成功查看进程

#ps aux|grep php

这样就已经起好php-fpm了。

配置Nginx

增加一段新的端口8054的配置并指向到9001以及指定目录即可:

server {

listen 8054;

server_name localhost;

location / {

#root html;

root /usr/www5.4.44;

index index.html index.htm;

}

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root html;

}

location ~ .php$ {

root html;

fastcgi_pass 127.0.0.1:9001;

fastcgi_index index.php;

include fastcgi_params;

fastcgi_param SCRIPT_FILENAME /usr/www5.4.44$fastcgi_script_name;

}

}

nginx的配置文件nginx.conf在

# cd /usr/local/nginx/conf

完整的nginx配置如下:

#user nobody;

worker_processes 4;

#error_log logs/error.log;

#error_log logs/error.log notice;

#error_log logs/error.log info;

#pid logs/nginx.pid;

events {

worker_connections 1024;

}

http {

include mime.types;

default_type application/octet-stream;

#log_format main '$remote_addr - $remote_user [$time_local] "$request" '

# '$status $body_bytes_sent "$http_referer" '

# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

sendfile on;

#tcp_nopush on;

#keepalive_timeout 0;

keepalive_timeout 65;

#gzip on;

server {

listen 80;

server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location / {

#root html;

root /usr/www;

index index.html index.htm;

}

#error_page 404 /404.html;

# redirect server error pages to the static page /50x.html

#

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root html;

}

# proxy the PHP scripts to Apache listening on 127.0.0.1:80

#

#location ~ .php$ {

# proxy_pass http://127.0.0.1;

#}

# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000

#

#location ~ .php$ {

# root html;

# fastcgi_pass 127.0.0.1:9000;

# fastcgi_index index.php;

# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;

# include fastcgi_params;

#}

location ~ .php$ {

root html;

fastcgi_pass 127.0.0.1:9000;

fastcgi_index index.php;

include fastcgi_params;

fastcgi_param SCRIPT_FILENAME /usr/www$fastcgi_script_name;

}

# deny access to .htaccess files, if Apache's document root

# concurs with nginx's one

#

#location ~ /.ht {

# deny all;

#}

}

server {

listen 8054;

server_name localhost;

location / {

#root html;

root /usr/www5.4.44;

index index.html index.htm;

}

error_page 500 502 503 504 /50x.html;

location = /50x.html {

root html;

}

location ~ .php$ {

root html;

fastcgi_pass 127.0.0.1:9001;

fastcgi_index index.php;

include fastcgi_params;

fastcgi_param SCRIPT_FILENAME /usr/www5.4.44$fastcgi_script_name;

}

}

# another virtual host using mix of IP-, name-, and port-based configuration

#

#server {

# listen 8000;

# listen somename:8080;

# server_name somename alias another.alias;

# location / {

# root html;

# index index.html index.htm;

# }

#}

# HTTPS server

#

#server {

# listen 443 ssl;

# server_name localhost;

# ssl_certificate cert.pem;

# ssl_certificate_key cert.key;

# ssl_session_cache shared:SSL:1m;

# ssl_session_timeout 5m;

# ssl_ciphers HIGH:!aNULL:!MD5;

# ssl_prefer_server_ciphers on;

# location / {

# root html;

# index index.html index.htm;

# }

#}

}

重启nginx

# /usr/local/nginx/sbin/nginx -s reload

注意需要防火墙增加新端口的开启,不然无法访问:

防火墙配置

注意如果你希望在本地机器例如xp访问虚拟机的网页,如果是centos6需要修改防火墙启动80端口

# cd /etc/sysconfig

修改iptables文件,或者直接用vim编辑

# vim /etc/sysconfig/iptables

添加下面一行,打开防火墙80端口:

-A INPUT -m state --state NEW -m tcp -p tcp --dport 8054 -j ACCEPT

重启防火墙

# /etc/init.d/iptables restart

测试是否成功,查看phpinfo()

以上即是Linux系统下为Nginx安装多版本PHP的方法,希望对大家有用

linux安装多版本php_Linux系统下为Nginx安装多版本PHP相关推荐

  1. linux 自动安装mysql数据库_linux系统下源码安装mysql5.6数据库

    linux系统下源码安装mysql5.6数据库 下载mysql数据库相关软件包(百度云盘:http://pan.baidu.com/s/1bnL31c7) 从mysql 5.5版本开始,mysql源码 ...

  2. mac 卸载php版本,mac 系统下删除旧的php版本安装最新的php版本及Xdebug

    这篇文章介绍的内容是关于mac 系统下删除旧的php版本安装最新的php版本及Xdebug,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下 我的2015版的macpro 系统下默认安装了 ...

  3. MySQL 最新8.0版本windows系统下数据库的安装、配置与使用实例演示,客户端使用ip连接数据库失败问题处理

    MySQL 8.0版本数据库安装与配置演示 第一章:安装与配置 ① 下载与安装 ② 配置环境变量 ③ 配置 mysql 的 my.ini 文件 ④ 初始化与重置密码 第二章:问题解决 ① MySQL ...

  4. 可选版本 安装软件_【Linux软件】在Deepin系统下安装LibreOffice 6.1.4版本的方法

    在Deepin系统下安装LibreOffice 6.4.1版本的方法 使用的是Deepin系统,从深度应用商店看到有LibreOffice,安装了一下,发现ui是真的丑,就像是十年前的xp那样,记得前 ...

  5. linux系统下源码安装mysql5.6数据库

    linux系统下源码安装mysql5.6数据库 下载mysql数据库相关软件包(百度云盘:http://pan.baidu.com/s/1bnL31c7) 从mysql 5.5版本开始,mysql源码 ...

  6. LINUX系统下ORACLE19C客户端安装步骤

    LINUX系统下ORACLE19C客户端安装步骤 服务器系统版本:CentOS 7.4 Oracle客户端安装包(19C版本)下载地址: Instant Client for Linux x86-64 ...

  7. 终端linux输入法安装程序,在Ubuntu系统下安装百度输入法Linux版的方法

    本文介绍在Ubuntu系统下安装百度输入法Linux版(也称为百度Linux输入法)的方法,以Ubuntu 18.04版本为例说明.说明:该输入法支持在Ubuntu 18.04.1810.1904.1 ...

  8. Linux系统下禅道的安装以及配置教程

    Linux系统下禅道的安装以及配置教程 首先查看Linux安装的版本,64的还是32的! 查看Linux版本:[root@localhost ~]# getconf LONG_BIT 1.Linux中 ...

  9. windows 7编辑启动菜单 bcdedit linux,windows7系统下删除wubi安装的ubuntu启动项使用命令bcdedit解决...

    windows7系统下删除wubi安装的ubuntu启动项使用命令bcdedit解决 发布时间:2013-05-28 15:19:31   作者:佚名   我要评论 前不久用笔记本通过wubi安装Ub ...

最新文章

  1. linux源码安装浏览器,Linux系统手动安装Firefox浏览器
  2. day4 Activity相关
  3. [剑指Offer] 59.按之字形顺序打印二叉树
  4. 【luogu P4005 清华集训2017】小Y和地铁
  5. python常用类库_Python常用库
  6. sklearn(聚类和降维)
  7. 设计模式笔记3:设计模式几大原则
  8. 计算机事业单位专技岗考什么区别,事业单位管理岗和专技岗的区别(从待遇等角度)...
  9. OJ1160: 矩阵的最大值(指针专题)(C语言)
  10. IDDD 实现领域驱动设计-理解限界上下文
  11. linux系统如何启动rpcbind,关于Centos6.8操作系统安装配置nfs、rpcbind服务后实现linux系统间文件数据共享(挂载mount共享路径)...
  12. 数据分析实战(三) 因子分析模型挖掘CSDN优质博主
  13. JAVA项目在服务器部署过程
  14. 电大计算机原理及应用,电大《ERP原理与应用》试题及答案.doc
  15. python的opencv操作记录(七)——短时傅里叶变换(stft)
  16. 禁用笔记本电脑自带键盘
  17. illustrator插件-常用功能开发-直角圆角化-js脚本开发-AI插件
  18. 四、vue 项目使用高德地图画面(多边形)
  19. 多种方法让你在PC上使用iCloud服务
  20. unity井字棋和一些重要概念(中山大学3D游戏作业2)

热门文章

  1. 第1章 计算机基础知识习题答案,职称计算机基础知识习题第一章
  2. 实验三 Linux的启动与关闭,实验三:跟踪分析Linux内核的启动过程
  3. 计算机地址永无符号数表示,计算机如何区分 有符号 无符号数的区别???
  4. matlab敏感词输出代码,敏感词设置
  5. mfc140dll 丢失 微软常用运行库_集成最新运行库、一键安装、一键到位,运行库操作简单!...
  6. python如何进阶提升_Python序列操作之进阶篇
  7. c语言六套,C语言编程笔试题(第六套)
  8. 【Nginx】应用静态化配置
  9. tomcat错误: javax.management.MalformedObjectNameException: Invalid character ':' in value part of prop
  10. spring事务(三)