搭建Nginx+PHP环境

简介:

搭建Nginx+PHP环境
 
一. 源码包编译安装部署web服务器
 
1.安装nginx必须的依赖包
 
[root@test01 ~]# yum -y install gcc openssl-devel pcre-devel zlib-devel
 
2.安装编译nginx,目前系统测试环境为CentOS6.3 软件版本为nginx-1.2.6
 
[root@test01 ~]# useradd nginx -s /sbin/nologin
 
[root@test01 ~]# tar zxvf nginx-1.2.6.tar.gz 
 
[root@test01 ~]# cd nginx-1.2.6 
 
[root@test01 nginx-1.2.6]# ./configure --user=nginx --group=nginx--prefix=/usr/local/nginx/ --with-http_stub_status_module--with-http_ssl_module 

// --with-http_stub_status_module 安装允许状态模块
 
// --with-http_ssl_module 安装ssl模块
 
[root@test01 ~]# /usr/local/nginx/sbin/nginx -v //查看Nginx的相关环境配置信息是否正确
 
nginx version: nginx/1.2.6
 
[root@test01 ~]#
 
[root@test01 nginx-1.2.6]# make & make install  //编译安装过程略
 
 
 
3.通过nginx自身脚本机器nginx服务器,并通过各种命令查看是否启动成功
 
[root@test01 ~]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf // -c指向nginx主配置文件
 
[root@test01 ~]# lsof -i :80 //查看nginx进程号及运行情况
 
COMMAND  PID USER  FD  TYPE DEVICE SIZE/OFF NODE NAME
 
nginx  21910 root    9u IPv4 262148      0t0 TCP*:http (LISTEN)
 
nginx  21911 nginx    9u IPv4 262148      0t0 TCP*:http (LISTEN)

[root@test01 ~]# ps -ef | grep nginx //查看nginx进程号及运行情况
 
root    21910    1 0 10:41 ?       00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c/usr/local/nginx/conf/nginx.conf
 
nginx    21911 21910 0 10:41 ?        00:00:00 nginx:worker process         

root    21957 21755 0 10:42 pts/0   00:00:00 grep nginx

[root@test01 ~]# netstat -nltp | grep 80 //查看nginx进程监听端口
 
[root@test01 ~]# netstat -an |grep 80
 
tcp        0      0 0.0.0.0:80                 0.0.0.0:*                 LISTEN

4.通过windows服务器IE浏览器测试
 



扩展知识:
 
1)设置nginx开机自动启动,将nginx启动命令添加到/etc/rc.local
 
[root@test01 ~]# echo "/usr/local/nginx/sbin/nginx -c/usr/local/nginx/conf/nginx.conf" >> /etc/rc.local 
 
[root@test01 ~]# cat /etc/rc.local | grep nginx
 
/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
 
 
 
2)通过设置System V 脚本,使用server命令启动nginx服务
 
[root@test01 init.d]# vim nginx //在/etc/init.d/下创建nginx启动脚本文件
 
#!/bin/sh
 
#
 
# nginx - this script starts and stops the nginx daemon
 
#
 
# chkconfig: - 85 15
 
# description: Nginx is an HTTP(S) server, HTTP(S) reverse \
 
#  proxy and IMAP/POP3 proxy server

# processname: nginx
 
# config: /etc/nginx/nginx.conf
 
# config: /etc/sysconfig/nginx
 
# pidfile: /var/run/nginx.pid
 
# Source function library.
 
. /etc/rc.d/init.d/functions
 
# Source networking configuration.
 
. /etc/sysconfig/network
 
# Check that networking is up.
 
[ "$NETWORKING" = "no" ] && exit 0
 
    nginx="/usr/local/nginx/sbin/nginx"

    prog=$(basename $nginx)

    NGINX_CONF_FILE="/usr/local/nginx/conf/nginx.conf"

[ -f /etc/sysconfig/nginx ] && ./etc/sysconfig/nginx
 
    lockfile=/var/lock/subsys/nginx

 
 
start() {
 
    [ -x $nginx ] || exit 5

    [ -f $NGINX_CONF_FILE ] || exit 6

    echo -n $"Starting $prog: "

    daemon $nginx -c $NGINX_CONF_FILE

    retval=$?

    echo

[ $retval -eq 0 ] && touch $lockfile
 
    return $retval

}
 
 
 
stop() {
 
    echo -n $"Stopping $prog: "

    killproc $prog -QUIT

    retval=$?

    echo

[ $retval -eq 0 ] && rm -f $lockfile
 
    return $retval

    killall -9 nginx

}
 
 
 
restart() {
 
    configtest || return $?

    stop

    sleep 1

    start

}
 
 
 
reload() {
 
    configtest || return $?

    echo -n $"Reloading $prog: "

    killproc $nginx -HUP

    RETVAL=$?

    echo

}
 
 
 
force_reload() {
 
    restart

}
 
 
 
configtest() {
 
    $nginx -t -c $NGINX_CONF_FILE

}
 
 
 
rh_status() {
 
    status $prog

}
 
 
 
rh_status_q() {
 
    rh_status >/dev/null 2>&1

}
 
 
 
case "$1" in
 
    start)

        rh_status_q && exit 0

        $1

    ;;

    stop)

        rh_status_q || exit 0

        $1

    ;;

    restart|configtest)

        $1

    ;;

    reload)

        rh_status_q || exit 7

        $1

    ;;

    force-reload)

        force_reload

    ;;

    status)

        rh_status

    ;;

    condrestart|try-restart)

        rh_status_q || exit 0

    ;;

    *)

        echo $"Usage: $0{start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"

        exit 2

esac
 
 
 
[root@test01 init.d]# chmod 755 nginx  //修改脚本文件nginx的权限
 
[root@test01 init.d]# chkconfig --add nginx //将脚本文件加入chkconfig中
 
[root@test01 init.d]# chkconfig --level 35 nginx on //设置nginx开机在3和5级别自动启动
 
[root@test01 init.d]# chkconfig --list | grep nginx
 
nginx          0:off  1:off  2:off 3:on    4:off  5:on    6:off

测试nginx脚本文件是否能够正常使用
 
[root@test01 init.d]# /etc/init.d/nginx restart //重新启动
 
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
 
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
 
Stopping nginx:                                          [ OK ]

Starting nginx:                                          [ OK ]

[root@test01 init.d]# /etc/init.d/nginx reload //不间断服务平滑重启
 
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
 
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
 
Reloading nginx:                                        [ OK ]

[root@test01 ~]# cat /usr/local/nginx/logs/nginx.pid //存储了nginx运行的进程号
 
15799
 
[root@test01 ~]# kill -HUP `cat /usr/local/nginx/logs/nginx.pid` //不间断服务重新启动nginx
 
 [root@test01 init.d]# /etc/init.d/nginx stop
 
Stopping nginx:                                          [ OK ]

[root@test01 init.d]# killall -9 nginx //结束nginx的全部经常
 
 
 
[root@test01 html]# pwd //安装nginx完成后,默认网站的路径
 
/usr/local/nginx/html
 
[root@test01 html]# ll    //可以查看到默认网站为index.html,内容为以上测试内容。
 
total 8
 
-rw-r--r--. 1 root root 537 Feb 27 11:40 50x.html
 
-rw-r--r--. 1 root root 612 Feb 27 11:40 index.html

.安装php环境
 
nginx目前还不能直接支持php,必须先借助于fastcgi来驱动php。现在fastcgi较好的办法有2种,一个是spawn-fcgi,另外一个就是php-fpm,一般来说可能php-fpm更强大一点.
 
由于PHP5.3版本以后就自带php-fpm了,所以如果你用源码安装的话只需要enable fpm就可以了,下面来说说通过yum安装php-fpm
 
开始安装NginxPHP-FPM之前,你必须卸载系统中以前安装的ApachePHP。用root登录输入下面的命令:
 
yum remove httpd* php*
 
增加额外资源库:
 
默认情况下,CentOS的官方资源是没有php-fpm但我们可以从RemiRPM资源中获得,它依赖于EPEL资源。我们可以这样增加两个资源库:
 
yum install yum-priorities –y
 
wget http://download.Fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
 
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
 
rpm -Uvh epel-release-6-8.noarch.rpm
 
rpm -Uvh remi-release-6.rpm
 
安装php,php-ftpm
 
yum --enablerepo=remi install php php-fpm
 
添加到系统自动运行
 
chkconfig --level 345 php-fpm on
 
PHP仅安装了核心模块,你很可能需要安装其他的模块,比如MySQL XML GD等等,你可以输入下列命令:
 
yum --enablerepo=remi install php-gd php-mysql php-mbstring php-xml php-mcrypt
 
第一次启动php-fpm,输入下列命令:
 
/etc/init.d/php-fpm start
 
三.配置PHP-FPMNginx
 
编辑Nginx的配置文件
 
vi /usr/local/nginx/conf/nginx.conf
 
修改如下:
 
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;
 
        }
 
配置fastcgi
 
vi /usr/local/nginx/conf/fastcgi_params
 
添加如下行:
 
fastcgi_param SCRIPT_FILENAME    $document_root$fastcgi_script_name;
 
添加php测试文件
 
vi /usr/local/nginx/html/index.php
 
添加以下内容:
 
<?php
 
phpinfo();
 
?>


本文转自 wdy198622 51CTO博客,原文链接:http://blog.51cto.com/weimouren/1731791

相关文章
|
23天前
|
Ubuntu 应用服务中间件 Linux
Linux下搭建Nginx环境的搭建
Linux下搭建Nginx环境的搭建
|
1月前
|
tengine 应用服务中间件 Linux
Tengine、Nginx安装PHP命令教程
要在阿里云Linux上安装PHP,请先更新YUM源并启用PHP 8.0仓库,然后安装PHP及相关扩展。通过`php -v`命令验证安装成功后,需修改Nginx配置文件以支持PHP,并重启服务。最后,创建`phpinfo.php`文件测试安装是否成功。对于CentOS系统,还需安装EPEL源和Remi仓库,其余步骤类似。完成上述操作后,可通过浏览器访问`http://IP地址/phpinfo.php`测试安装结果。
|
1月前
|
应用服务中间件 Shell PHP
windows系统配置nginx环境运行pbootcms访问首页直接404的问题
windows系统配置nginx环境运行pbootcms访问首页直接404的问题
|
2月前
|
NoSQL 关系型数据库 Redis
mall在linux环境下的部署(基于Docker容器),Docker安装mysql、redis、nginx、rabbitmq、elasticsearch、logstash、kibana、mongo
mall在linux环境下的部署(基于Docker容器),docker安装mysql、redis、nginx、rabbitmq、elasticsearch、logstash、kibana、mongodb、minio详细教程,拉取镜像、运行容器
mall在linux环境下的部署(基于Docker容器),Docker安装mysql、redis、nginx、rabbitmq、elasticsearch、logstash、kibana、mongo
|
3月前
|
关系型数据库 MySQL 应用服务中间件
win7系统搭建PHP+Mysql+Apache环境+部署ecshop项目
这篇文章介绍了如何在Windows 7系统上搭建PHP、MySQL和Apache环境,并部署ECShop项目,包括安装配置步骤、解决常见问题以及使用XAMPP集成环境的替代方案。
55 1
win7系统搭建PHP+Mysql+Apache环境+部署ecshop项目
|
3月前
|
应用服务中间件 nginx Docker
本地通过域名访问虚拟机上nginx的服务、搭建域名访问环境一(反向代理配置)
这篇文章介绍了如何通过域名在本地访问虚拟机上的nginx服务,包括创建nginx容器、修改配置文件、修改本地host文件以及进行访问测试的详细步骤。文章提供了具体的Docker命令来创建并配置nginx容器,展示了配置文件的修改示例,说明了如何在本地系统的hosts文件中添加虚拟机IP和自定义域名,以及如何通过浏览器进行测试访问。
本地通过域名访问虚拟机上nginx的服务、搭建域名访问环境一(反向代理配置)
|
2月前
|
SQL 安全 JavaScript
在多用户环境中,如何确保 PHP Shell 的安全性?
在多用户环境中,如何确保 PHP Shell 的安全性?
|
3月前
|
消息中间件 负载均衡 应用服务中间件
高并发环境下的Nginx整合方案
【8月更文挑战第20天】在高并发环境下,整合Nginx代理服务器、静态文件服务器、Tomcat集群、Mycat数据库读写分离和消息队列,可以构建一个强大、灵活且可扩展的Web服务架构。
47 1
|
3月前
|
Web App开发 关系型数据库 PHP
使用 Docker 快速搭建多版本 PHP 开发环境
使用 Docker 快速搭建多版本 PHP 开发环境
78 2
|
3月前
|
应用服务中间件 Linux 网络安全
【Azure 应用服务】PHP应用部署在App Service for Linux环境中,上传文件大于1MB时,遇见了413 Request Entity Too Large 错误的解决方法
【Azure 应用服务】PHP应用部署在App Service for Linux环境中,上传文件大于1MB时,遇见了413 Request Entity Too Large 错误的解决方法