nginxコマンドノート(mac)
1063 ワード
コマンドパラメータ
開始
ていし
余裕で止める
クイックストップ
強制停止
-c Nginx , 。
-t , 。
-v nginx
-V nginx , 。
開始
# nginx
cd /usr/local/Cellar/nginx/1.12.1/bin
# nginx.conf
sudo nginx -t -c /usr/local/etc/nginx/nginx.conf
#
sudo nginx -c /usr/local/etc/nginx/nginx.conf
#
sudo nginx -s reload
ていし
余裕で止める
#
ps -ef|grep nginx
0 25462 1 0 5:26 ?? 0:00.00 nginx: master process nginx
-2 25463 25462 0 5:26 ?? 0:00.00 nginx: worker process
501 25467 25428 0 5:26 ttys005 0:00.00 grep nginx
# master
sudo kill -quit 25462
クイックストップ
#
ps -ef|grep nginx
0 25462 1 0 5:26 ?? 0:00.00 nginx: master process nginx
-2 25463 25462 0 5:26 ?? 0:00.00 nginx: worker process
501 25467 25428 0 5:26 ttys005 0:00.00 grep nginx
# master
sudo kill -term 25462
#
sudo kill -int 25462
強制停止
sudo pkill -9 nginx