Nginx的啟動 停止與重啟

2021-08-25 22:46:54 字數 613 閱讀 9655

啟動

例如:/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

停止ngnix的停止有三種方式:

從容停止

1.檢視程序號:

ps -aux|grep nginx

2.殺死程序

kill -quit 2088

快速停止

1.檢視程序號:ps -ef|grep nginx

2.殺死程序:kill -term 2168 或kill -int 2168

強制停止

pkill -9 nginx

重啟1.驗證nginx配置檔案是否正確

方法一:進入nginx安裝目錄sbin下,輸入命令./nginx -t

看到如下顯示nginx.conf syntax is ok

ngnix.conf test is successful

說明配置檔案正確!

2.重啟nginx服務

方法一:進入nginx可執行目錄sbin下,輸入命令./nginx -s reload即可

方法二:查詢當前nginx程序號,然後輸入命令:kill -hup 程序號 實現重啟nginx服務

Nginx的啟動 停止與重啟

例如 root linuxserver sbin usr local nginx sbin nginx c usr local nginx conf nginx.conf 停止nginx的停止有三種方式 從容停止 1 檢視程序號 2 殺死程序 快速停止 1 檢視程序號 2 殺死程序 root lin...

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安裝目錄位址 c nginx配置檔案位址 例如 root linuxserver sbin usr local nginx sbin nginx c usr local nginx conf nginx.conf nginx的停止有三種方式 1 檢視程序號 2 殺死程序 1 檢...