Nginx筆記系列(2)——Nignx基本操做(啓動、中止、重啓)以及信號控制

在成功安裝了Nginx以後,本文介紹Nginx的幾個基本操做:啓動、中止、重啓、信號控制nginx


Nginx的啓動:shell

命令格式: nginx地址  -c  nginx配置文件地址
瀏覽器

下面是個人電腦上的操做過程。注意啓動須要su權限。bash

[neil@neilhost ~]$ cd /usr/local/nginx/sbin
[neil@neilhost sbin]$ ll
總用量 3260
-rwxr-xr-x. 1 root root 3334713 3月   3 13:36 nginx
[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
[sudo] password for neil: 
[neil@neilhost sbin]$

有沒有啓動成功呢?驗證方法有三種:服務器

驗證方法1:打開瀏覽器,訪問127.0.0.1,如過你是遠程訪問的服務器或者虛擬機,使用對應的IP地址。nginx默認的端口號設置就是80。app

驗證方法2:查看nginx的進程是否存在tcp

[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(3675)---nginx(3676)
[neil@neilhost sbin]$

能夠看到,系統的的PID爲3675的進程就是nginx,說明nginx已經成功啓動。測試

(本文出自oschina和HappyBKs 文章:http://my.oschina.net/happyBKs/blog/632771)spa

驗證方法3:查看80號端口被什麼程序佔用,是否是nginx.net

[neil@neilhost sbin]$ sudo netstat -tunpl | grep 80
[sudo] password for neil: 
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      3675/nginx: master  
udp        0      0 0.0.0.0:59251           0.0.0.0:*                           3180/dhclient       
udp        0      0 0.0.0.0:68              0.0.0.0:*                           3180/dhclient       
udp6       0      0 :::58294                :::*                                3180/dhclient       
[neil@neilhost sbin]$

能夠看到,80端口的監聽中的程序正式nginx


Nginx的中止:

Nginx的中止有三種不一樣的中止方法:從容中止,快速中止,強制中止

(1)從容中止:首先,須要獲取nginx的主進程master process的ID號;而後,用-QUIT參數做爲從容中止的類型標註來中止

[neil@neilhost sbin]$ ps -ef | grep nginx
root      3675     1  0 12:08 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody    3676  3675  0 12:08 ?        00:00:00 nginx: worker process
neil      3855  3598  0 12:41 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$ kill -QUIT 3675
bash: kill: (3675) - 不容許的操做
[neil@neilhost sbin]$ sudo kill -QUIT 3675
[sudo] password for neil: 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ ps -ef | grep nginx
neil      3877  3598  0 12:42 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$

這裏能夠看到,原先的nginx主進程已經關閉,剩餘的那個3877進程是nginx的開機自動啓動服務,它不隸屬於nginx主進程,因此依然存在,可是nginx服務器自己已經成功關閉。

不信,請再訪問一下瀏覽器:

(2)快速中止:步驟與從容中止相似,只是用於中止的信號量參數不一樣。而且,快速中止的信號量參數有兩個,-TERM和-INT,兩個都能表示快速中止,用哪一個均可以。

[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
[sudo] password for neil: 
[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4242)---nginx(4243)
[neil@neilhost sbin]$ ps -ef | grep nginx
root      4242     1  0 13:18 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody    4243  4242  0 13:18 ?        00:00:00 nginx: worker process
neil      4283  3598  0 13:22 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$ sudo kill -TERM 4242
[sudo] password for neil: 
[neil@neilhost sbin]$ ps -ef | grep nginx
neil      4307  3598  0 13:25 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$


(3) 強制中止:所謂強制中止,就是無論如今的nginx是否真的容許被中止掉,咱們都要強制將其中止。

用的命令是pkill -9

這裏須要注意的是,這裏的命令是pkill,而不是kill,效果上的不一樣我會在下面的實際操做中作個比較。-9參數不用我多說了,那是「絕殺」

[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4331)---nginx(4332)
[neil@neilhost sbin]$ ps -ef | grep nginx
root      4331     1  0 13:28 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody    4332  4331  0 13:28 ?        00:00:00 nginx: worker process
neil      4342  3598  0 13:28 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$ sudo kill -9 nginx
[neil@neilhost sbin]$ ps -ef | grep nginx
nobody    4332     1  0 13:28 ?        00:00:00 nginx: worker process
neil      4353  3598  0 13:29 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] still could not bind()
[neil@neilhost sbin]$ sudo pkill -9 nginx
[neil@neilhost sbin]$ ps -ef | grep nginx
neil      4387  3598  0 13:30 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$

從上面的例子能夠看到,kill -9 只能將nginx的主進程殺死,但沒法殺死其工做進程。而且,此時,若是想開啓nginx也是不被容許的;因此正確的強制中止的命令應該是pkill -9 nginx


Nginx的重啓:

何時咱們須要重啓Nginx?不少時候都有重啓Nginx的必要。好比,當Nginx的配置文件被更改,須要經過重啓Nginx來使得配置更改生效。這一點到和Tomcat十分類似。

這裏,咱們就假設咱們的應用場景是在修改過配置文件以後須要重啓nginx。這時候,咱們正確的操做步驟不是當即執行重啓命令,而是應該對配置文件進行測試,看其是否符合語法經過檢測。命令以下:哪種均可以。

[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -t
[sudo] password for neil: 
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -t -c /usr/local/nginx/conf/nginx.conf
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ sudo ./nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[neil@neilhost sbin]$

下面,咱們開始重啓nginx。命令是./nginx -s reload

可是,這裏有幾個地方須要注意,先看看個人操做示例。

[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -s reload
nginx: [alert] kill(4331, 1) failed (3: No such process)
[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
[neil@neilhost sbin]$ ps -ef | grep nginx
root      4531     1  0 13:53 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody    4532  4531  0 13:53 ?        00:00:00 nginx: worker process
neil      4537  3598  0 13:53 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -s reload
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ ps -ef | grep nginx
root      4531     1  0 13:53 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody    4544  4531  0 13:53 ?        00:00:00 nginx: worker process
neil      4552  3598  0 13:54 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4531)---nginx(4544)
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -s reload
[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4531)---nginx(4587)
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ sudo /usr/local/nginx/sbin/nginx -s reload
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4531)---nginx(4604)
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$

(a)重啓nginx,必須是在nginx已經啓動的狀況寫下進行的。不然,會重啓失敗。

 (b)重啓 不等於 關閉+啓動 !!!!

        經過上面的例子就能夠清楚地看到:雖然重啓了屢次,可是nginx的主進程號在第一次啓動後就沒有改變過,不管後面重啓了的多少次,主進程ID都是4531,重啓改變的只有工做進程的ID。着說明了什麼本身細細回味吧。

       若是是本身「關閉+啓動」n次,那麼nginx的主進程和工做進程的ID號必定都在變化。


重啓有兩種方法,除了上面的方法外,還有一種利用信號的方式。kill -HUP

[neil@neilhost sbin]$ sudo kill -HUP 4531
[sudo] password for neil: 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4531)---nginx(4867)
[neil@neilhost sbin]$ ps -ef | grep nginx
root      4531     1  0 13:53 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody    4867  4531  0 14:08 ?        00:00:00 nginx: worker process
neil      4880  3598  0 14:08 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ sudo kill -HUP 4531
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4531)---nginx(4889)
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ sudo kill -HUP 4531
[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4531)---nginx(4906)
[neil@neilhost sbin]$

一樣,這種方法下,nginx重啓後主進程ID依然不變,改變的唯有工做進程ID。


Nginx的信號控制

好,以上就是nginx的啓動、關閉、重啓的操做方法。咱們能夠可看到,在關閉的三種方式和重啓的最後一種方式中,咱們使用的都是信號控制的方法。這裏,本文會對信號控制的相關內容作一個簡單的集中介紹。

信號量 含義
HUP 重啓
QUIT 從容中止
TERM 快速中止
INT 快速中止
USR1 切換日誌文件
USR2 平滑升級可執行進程
WINCH 從容關閉工做進程




這裏,我分別說一下,好比INT和TERM兩個快速關閉的含義。

INT(快速關閉)----是當用戶鍵入<Control-C>時由終端驅動程序發送的信號。這是一個終止當前操做的請求,若是捕獲了這個信號,一些簡單的程序應該退出,或者容許自給被終止,這也是程序沒有捕獲到這個信號時的默認處理方法。擁有命令行或者輸入模式的那些程序應該中止它們在作的事情,清除狀態,並等待用戶的再次輸入。

TERM(快速關閉)----是請求完全終止某項執行操做,它指望接收進程清除自給的狀態並退出。

HUP: 平滑啓動。若是想要更改配置而不需中止並從新啓動服務,請使用該命令。在對配置文件做必要的更改後,發出該命令以動態更新服務配置。

QUIT:從容關閉。


由原以上幾個信號已經在前面的關閉和重啓操做重介紹過,這裏再也不累述。

USER1和USER2,命令調用的方式就是 kill -USER1 進程號和 kill -USER2 進程號。具體在實際狀況怎麼使用,咱們放到後面的文章中介紹。這裏,本文只介紹WINCH。

kill -WINCH的功能是從容關閉工做進程。可是,kill -WINCH後面須要跟的nginx的主進程號。它所作的是關閉特定進程號的主進程的下屬的工做進程。具體看例子:

[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4531)---nginx(4906)
[neil@neilhost sbin]$ ps -ef | grep nginx
root      4531     1  0 13:53 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nobody    4906  4531  0 14:08 ?        00:00:00 nginx: worker process
neil      5058  3598  0 14:32 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ sudo kill -WINCH 4531
[sudo] password for neil: 
[neil@neilhost sbin]$ 
[neil@neilhost sbin]$ pstree -p | grep nginx
           |-nginx(4531)
[neil@neilhost sbin]$ ps -ef | grep nginx
root      4531     1  0 13:53 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
neil      5092  3598  0 14:34 pts/0    00:00:00 grep --color=auto nginx
[neil@neilhost sbin]$
相關文章
相關標籤/搜索