回答:
nginxは次のシグナルをサポートしています:
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
USR1 - Reopen the log files
USR2 - Upgrade Executable on the fly
WINCH - Gracefully shutdown the worker processes
HUPはあなたが探しているものです。 sudo kill -HUP pid (nginx pid)
通常、nginxのinit-scriptにはreload
アクションがあります。つまり:
/etc/init.d/nginx reload
/usr/local/etc/rc.d/nginx reload
service nginx reload
?
PSはWindowsでは機能しません。
しばらく前に、停止時間ゼロでnginxを再起動する方法について書きました。これは役に立つかもしれません。
http://tumblelog.jauderho.com/post/101514948/restart-nginx-with-zero-downtime
USR2
単純な設定の再読み込みではなく、実行可能ファイルのアップグレード用です。