[server] nginx를 다시 시작하지 않고 수정을 적용하는 방법은 무엇입니까?

Apache에는 Apache 를 다시 시작하지 않고도 graceful수정을 검색 할 수 있는 옵션이 있습니다 http.conf. nginx는 어떻습니까?



답변

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)

출처 :
http://nginx.org/en/docs/control.html


답변

nginx -s reload 사용


답변

일반적으로 nginx의 init-script에는 다음과 같은 reload동작 이 있습니다.

  • 리눅스 /etc/init.d/nginx reload
  • FreeBSD /usr/local/etc/rc.d/nginx reload

답변

service nginx reload ?

PS는 Windows에서 작동하지 않습니다.


답변

얼마 전에 중단 시간없이 nginx를 다시 시작하는 방법에 대해 썼습니다. 도움이 될 수 있습니다.

http://tumblelog.jauderho.com/post/101514948/restart-nginx-with-zero-downtime


답변