nginx啟動 停止 重啟 配置檔案校驗

2021-09-26 08:49:57 字數 786 閱讀 6622

nginx啟動命令

a.命令 /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf

2、nginx停止命令(3種方法 2種方式)

a、從容停止  需要知道程序號

檢視nginx程序號命令為:ps -ef|grep nginx 只需要檢視master的程序號

停止命令 kill -quit 程序號

b、快速停止 kill -term 程序號 或者 kill -int 程序號

c、強制停止 pkill -9 nginx

3、nginx重啟命令

有時候我們重啟是由於修改了conf檔案,所以重啟前,需要驗證下配置檔案是否正確

a、第一種重啟方法

進入sbin目錄 命令 cd /usr/local/nginx/sbin

重啟命令./nginx -s reload

b.重啟第二種方法

重啟命令kill -hup 程序號

4、驗證配置檔案是否正確的命令:

a、方法一   

/usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf

b、進入sbin目錄 命令 cd /usr/local/nginx/sbin

驗證命令為 ./nginx -t

出現 ****** is ok 表示配置檔案沒問題

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

Nginx啟動停止重啟

你好!這是你第一次使用markdown編輯器所展示的歡迎頁。如果你想學習如何使用markdown編輯器,可以仔細閱讀這篇文章,了解一下markdown的基本語法知識。1.檢視linux核心版本 uname a 2.安裝gcc編譯器,用來編譯c語言 yum install y gcc 3.安裝c 編譯...

nginx啟動 停止重啟

例如 root linuxserver sbin usr local nginx sbin nginx c usr local nginx conf nginx.conf nginx的停止有三種方式 1 檢視程序號 ps ef grep nginx2 殺死程序 kill quit 2072 1 檢視...