Nginx啟動,停止和重新載入配置

2022-04-16 03:49:03 字數 399 閱讀 9755

nginx配置檔案

nginx及其模組的工作方式是由配置檔案指定,預設情況下配置檔案被命名為nginx.conf並且存放在 /usr/local/nginx/conf | /etc/nginx | /usr/local/etc/nginx

nginx命令

要啟動nginx直接執行nginx檔案,啟動後可以使用以下命令。

nginx -s options

options引數可以是下面之一

檢視nginx程序的列表

ps -ax

該命令可以看到所有程序包括程序id,預設情況下主程序的id將寫入nginx.pid目錄,

如果需要正常關閉某個程序,執行命令:kill -s quit 程序id

Nginx啟動 關閉 重新載入指令碼

bin sh default start 2 3 4 5 default stop 0 1 6 short description starts the nginx web server path usr local sbin usr local bin sbin bin usr sbin usr ...

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的啟動和停止

1.nginx的啟動 nginx執行檔案的路徑 c nginx配置檔案的路徑 2.nginx的停止 nginx停止有三種型別,從容停止,快速停止,強行停止 2.1從容停止 輸入 kill quit nginx的主程序號 查詢nginx程序號需要輸入 ps ef grep nginx 查詢 2.2 快...