1.nginx的啟動
nginx執行檔案的路徑 -c nginx配置檔案的路徑
2.nginx的停止
nginx停止有三種型別,從容停止,快速停止,強行停止
2.1從容停止
輸入『kill -quit nginx的主程序號』
查詢nginx程序號需要輸入『ps -ef|grep nginx』查詢
2.2 快速停止
輸入 『kill -term nginx的主程序號』 或者 『exit -int
nginx的主程序號
』2.3 強制停止
輸入『pkill -9 nginx』停止nginx
3. nginx的重啟
3.1 驗證配置檔案是否正確』/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf『
3.2 重啟nginx
3.2.1 在nginx的sbin目錄輸入『./nginx -s reload』
3.2.2 輸入kill -hup 『nginx的主程序號』
4.其他命令
usr1 切換日誌檔案 ,輸入『kill -usr1 nginx的程序號』
usr2 平滑公升級可執行程序,輸入『kill -usr2 nginx的程序號』
winch 從容關閉工作程序,輸入『kill -winch nginx的主程序號』
nginx啟動和停止指令碼
bin sh nginx base dir opt nginx nginx daemon sbin nginx nginx conf conf nginx.conf launch signal s dev null checkconfig c t dev null start exit1 check...
nginx的啟動,停止和重啟
例如 root linuxserver sbin usr local nginx sbin nginx c usr local nginx conf nginx.confnginx的停止有三種方式 1 檢視程序號 2 殺死程序 1 檢視程序號 2 殺死程序 root linuxserver kill...
nginx啟動停止
nginx s reopen 重新開啟日誌檔案 nginx t c path to nginx.conf 測試nginx配置檔案是否正確 關閉nginx nginx s stop 快速停止nginx quit 完整有序的停止nginx 其他的停止nginx 方式 ps ef grep nginx k...