/**
* lihaibo
* 文章内容都是根据自己工作情况实践得出。
*如有错误,请指正
*转载请注明出处
*/
一、启动
/usr/local/nginx/sbin/nginx或者cd /usr/local/nginx/sbin./nginx
二、关闭
查询主进程号:
[email protected]:/usr/local/nginx/conf# ps -aux |grep nginx root 1175 0.0 0.0 4216 600 ? Ss 13:13 0:00 runsv nginx root 1266 0.0 0.0 4360 708 ? S 13:13 0:00 svlogd -tt /var/log/gitlab/nginx root 1277 0.0 0.2 31180 2348 ? Ss 13:13 0:00 nginx: master process /opt/gitlab/embedded/sbin/nginx -p /var/opt/gitlab/nginx gitlab-+ 1303 0.0 0.3 35432 3488 ? S 13:13 0:00 nginx: worker process gitlab-+ 1304 0.0 0.3 35432 3616 ? S 13:13 0:05 nginx: worker process root 46240 0.0 0.0 22284 376 ? Ss 16:12 0:00 nginx: master process /usr/local/nginx/sbin/nginx nobody 46241 0.0 0.2 22684 2380 ? S 16:12 0:00 nginx: worker process root 51491 0.0 0.2 10476 2080 pts/3 R+ 17:35 0:00 grep --color=auto nginx
查出主进程号为 46240
------------------------------
顺序停止 kill -QUIT 主进程号
快速停止 kill -TERM 主进程号
强制停止 kill -9 nginx
-------------------------------
若nginx.conf配置了pid文件路径
如果没有,则在logs目录下
kill -信号类型 ‘/usr/local/nginx/logs/nginx.pid‘
三、重启
检查配置文件是否配置正确:
nginx -t -c /usr/local/nginx/conf/nginx.conf
或
/usr/local/nginx/sbin/nginx -t
更改配置后重启nginx
kill -HUP 主进程号或进程号文件路径 #可以不停止进程的情况下重新读取配置文件 或者使用 cd /usr/local/nginx/sbin ./nginx -s reload
四、升级
1、先用新程序替换旧程序文件
2、kill -USR2 旧版程序的主进程号或者进程文件名
此时旧的nginx主进程会把自己的进程文件改名为.oldbin,然后执行新版nginx,此时新旧版本同时运行
3、kill -WINCH 旧版本主进程号
4、不重载配置启动新/旧工作进程
kill -HUP 旧/新版本主进程号
从容关闭旧/新进程
kill -QUIT 旧/新进程号
快速关闭旧/新进程
kill -TERM 旧/新进程号
时间: 2024-09-28 14:20:16