Comment faire en sorte qu'une modification prenne effet sans redémarrer nginx?


74

Apache a une gracefuloption qui peut analyser la modification http.confsans redémarrer Apache. Qu'en est-il de nginx?

Réponses:


72

nginx prend en charge les signaux suivants:

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 est ce que vous recherchez, alors sudo kill -HUP pid (nginx pid)

source: http://nginx.org/en/docs/control.html



20

Le script init de nginx a généralement une reloadaction, à savoir:

  • Linux /etc/init.d/nginx reload
  • FreeBSD /usr/local/etc/rc.d/nginx reload


En utilisant notre site, vous reconnaissez avoir lu et compris notre politique liée aux cookies et notre politique de confidentialité.
Licensed under cc by-sa 3.0 with attribution required.