Nginx的啟動 停止與重啟

2022-08-02 19:54:10 字數 855 閱讀 4815

啟動

啟動**格式:nginx安裝目錄位址 -c nginx配置檔案位址

例如:[root@linuxserver sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

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

從容停止

1、檢視程序號

[root@linuxserver ~]# ps -ef|grep nginx

2、殺死程序

[root@linuxserver ~]# kill -quit 2072

快速停止

1、檢視程序號

[root@linuxserver ~]# ps -ef|grep nginx

2、殺死程序

[root@linuxserver ~]# kill -term 2132

或 [root@linuxserver ~]# kill -int 2132

強制停止

[root@linuxserver ~]# pkill -9 nginx

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

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

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

nginx.conf test is successful

說明配置檔案正確!

方法二:在啟動命令-c前加-t

2、重啟nginx服務

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

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

Nginx的啟動 停止與重啟

啟動 例如 usr local nginx sbin nginx c usr local nginx conf nginx.conf 停止ngnix的停止有三種方式 從容停止 1.檢視程序號 ps aux grep nginx 2.殺死程序 kill quit 2088 快速停止 1.檢視程序號 p...

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...