Nginx啟動、停止、平滑重啟
1 啟動
# nginx -c /etc/nginx.conf
如果不加 -c 參數,Nginx默認加載conf子目錄中的nginx.conf
2 停止
找出Master PID
# ps -ef | grep nginx
從容停止
# kill -QUIT MasterPID
快速停止
# kill -TERM MasterPID
或
# kill -INT MasterPID
強制停止
# pkill -9 nginx
3 平滑重啟
重啟前先確認Nginx配置文件的語法是否正確
# nginx -t -c /etc/nginx.conf
# kill -HUP MasterPID