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アクションがあります。つまり:

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


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.