标签:oca ESS server 启动 root syntax 命令 nginx安装 load
启动代码格式:nginx安装目录地址 -c nginx配置文件地址
例如:
[root@LinuxServer sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nginx的停止有三种方式:
1、查看进程号
ps -ef|grep nginx
2、杀死进程
kill -QUIT 2072
1、查看进程号
ps -ef|grep nginx
2、杀死进程
kill -TERM 2132 或 kill -INT 2132
pkill -9 nginx
看到如下显示nginx.conf syntax is ok
nginx.conf test is successful
说明配置文件正确!
lnmpp 默认安装路径:/usr/local/nginx/sbin
标签:oca ESS server 启动 root syntax 命令 nginx安装 load
原文地址:https://www.cnblogs.com/yc-c/p/10244173.html