博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
从零搭建LNMP环境(二) - 集成Nginx与PHP
阅读量:5999 次
发布时间:2019-06-20

本文共 2096 字,大约阅读时间需要 6 分钟。

hot3.png

安装Nginx的方式有很多种,这里我们还是编译源码进行安装,使用下列命令:

$ wget http://nginx.org/download/nginx-1.6.2.tar.gz$ tar -zxvf nginx-1.6.2.tar.gz$ cd nginx-1.6.2$ ./configure --prefix=/usr/local/nginx$ make$ sudo make install

如果安装过程中出现如下错误

./configure: error: the HTTP rewrite module requires the PCRE library.You can either disable the module by using --without-http_rewrite_moduleoption, or install the PCRE library into the system, or build the PCRE librarystatically from the source with nginx by using --with-pcre=
option.

则需要先安装pcre

$ sudo yum install pcre-devel

安装完成之后,我们的Nginx安装目录在/usr/local/nginx。 接下来修改nginx的配置文件(/usr/local/nginx/conf/nginx.conf),使其能够处理php脚本。

worker_processes  1;events {  worker_connections  1024;}http {  include       mime.types;  default_type  application/octet-stream;  sendfile        on;  keepalive_timeout  65;  server {    listen       80;    server_name  _;    root /vagrant;    location / {      index  index.html index.htm index.php;    }    location /demo {      index index.php;      if (!-e $request_filename) {          rewrite ^/demo/(.*)$ /demo/index.php?$1 last;          break;      }    }    error_page   500 502 503 504  /50x.html;    location = /50x.html {      root   html;    }    location ~ \.php$ {      fastcgi_pass   127.0.0.1:9000;      fastcgi_index  index.php;      fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;      include        fastcgi_params;    }  }}

最后,启动Nginx时,需要先启动PHP-FPM。

$ sudo /usr/local/php/sbin/php-fpm$ sudo /usr/local/nginx/sbin/nginx

对于Nginx的重启以及关闭操作,可以使用以下命令

$ sudo /usr/local/nginx/sbin/nginx -s [reload|restart|stop]

而PHP-FPM,则麻烦一点,需要先使用ps -ef|grep php-fpm获取master process的进程ID, 再使用kill -USR2:

$ ps -ef|grep php-fpmroot      6221     1  0 02:17 ?        00:00:00 php-fpm: master process (/usr/local/php/etc/php-fpm.conf)nobody    6222  6221  0 02:17 ?        00:00:00 php-fpm: pool wwwnobody    6223  6221  0 02:17 ?        00:00:00 php-fpm: pool wwwvagrant   6233  1623  0 02:18 pts/0    00:00:00 grep php-fpm$ sudo kill -USR2 6221

注意: -USR2参数为重启,-INT参数为关闭。

转载于:https://my.oschina.net/agiledev/blog/349060

你可能感兴趣的文章
大连东软集团实践报告
查看>>
"蓝桥杯“基础练习:数列特征
查看>>
证明积累
查看>>
233 Matrix
查看>>
深入学习jQuery自定义插件
查看>>
设计模式之适配器模式
查看>>
IDEA 字体设置(转)
查看>>
java无需解压zip压缩包直接读取包内的文件名(含中文)
查看>>
Testing - 软件测试知识梳理 - 理解测试
查看>>
L2TP/IPSec一键安装脚本
查看>>
android以json形式提交信息到服务器
查看>>
CetnOS 6.7安装Hive 1.2.1
查看>>
最短最优升级路径(完美世界2017秋招真题)
查看>>
【PHP基础】错误处理、异常处理
查看>>
Android之drawable state各个属性详解
查看>>
Linux——网段的划分,子网掩码,ABC类地址的表示法
查看>>
android开发(22)使用正则表达式 。从一个字符串中找出数字,多次匹配。
查看>>
AJAX
查看>>
2015 多校联赛 ——HDU5334(构造)
查看>>
几个ES6新特性
查看>>