nginx 应用篇
Posted draglong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 应用篇相关的知识,希望对你有一定的参考价值。
nginx 信号控制(commanLine)
kill singel pid
ps aux|grep nginx
nginx 有两个进程,一个 master 一个worker
一个master管理一个或者多个worker
杀死worker进程 ps auxi|grep nginx(查看当前nginx进程)
kill -INT 26652
./sbin/nginx
ps aux|grep nginx
kill -INT 26661
term,int (quick shutdown快速杀掉)
quit (graceful shutdown 优雅的杀掉进程)
hup (configuration reload,start the new worker processes with a new configuration gracefully shutdown the old worker processes 改变配置文件,平滑的重读配置文件)
starting,quit,
以上是关于nginx 应用篇的主要内容,如果未能解决你的问题,请参考以下文章