답변:
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 -s reload 사용
일반적으로 nginx의 init-script에는 다음과 같은 reload
동작 이 있습니다.
/etc/init.d/nginx reload
/usr/local/etc/rc.d/nginx reload
얼마 전에 중단 시간없이 nginx를 다시 시작하는 방법에 대해 썼습니다. 도움이 될 수 있습니다.
http://tumblelog.jauderho.com/post/101514948/restart-nginx-with-zero-downtime
USR2
간단한 구성 재로드가 아닌 실행 파일을 업그레이드하기위한 것입니다.