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


74

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

답변:


72

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



20

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

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


당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.