标签:快速 配置 说明 cloud quit 格式 ima hup html
启动代码格式:nginx安装目录地址 -c nginx配置文件地址
例如:
[root@LinuxServer sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nginx的停止有三种方式:
1、查看进程号
[root@LinuxServer ~]# ps -ef|grep nginx
2、杀死进程
[root@LinuxServer ~]# kill -QUIT 2072
1、查看进程号
[root@LinuxServer ~]# ps -ef|grep nginx
2、杀死进程
[root@LinuxServer ~]# kill -TERM 2132
或 [root@LinuxServer ~]# kill -INT 2132
[root@LinuxServer ~]# pkill -9 nginx
看到如下显示nginx.conf syntax is ok
nginx.conf test is successful
说明配置文件正确!
转自:http://www.cnblogs.com/codingcloud/p/5095066.html
标签:快速 配置 说明 cloud quit 格式 ima hup html
原文地址:http://www.cnblogs.com/lianxiaorui/p/7731608.html