最近感覺公司的nginx版本太低了並且我們又要添加新的nginx模組所以只能想到的就是平滑升級這一辦法了。 Nginx更新真的很快,最近nginx的0.8.55和nginx的0.7.69舊的穩定版本已經發布。我比較喜歡使用新版的軟體,於是把原來的nginx-1.0.2平滑升級至nginx-1.0.5穩定版。並記錄這個過程,希望對有需要的朋友有點幫助。 1. 開始之前先查看一下目前使用的版本。 # /usr/local/nginx/sbin/nginx -V
nginx: nginx version: nginx/1.0.5
nginx: built by gcc 4.1.2 20080704 (Red Hat 4.1.2-50)
nginx: TLS SNI support disabled
nginx: configure arguments: --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_flv_module --with-cc-opt=-O3 --with-cpu-opt=opteron --with-http_gzip_static_module※ 注意紅色區域,這是先前編譯的參數。馬上編輯新版本需要用到。 2.下載新版本:http://nginx.org/en/download.html然後:解壓縮> 便以前的準備> 編譯# tar zxvf nginx-1.0.5.tar.gz
# cd nginx-1.0.5
# ./configure
--user=www
--group=www
--prefix=/usr/local/nginx
--with-http_stub_status_module
--with-http_ssl_module
--with-http_flv_module
--with-cc-opt='-O3'
--with-cpu-opt=opteron
--with-http_gzip_static_module
# make3. 執行完後,這裡不用在make install了,接下來重名/sbin/nginx為nginx.old# mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.old4. 複製編譯後objs目錄下的nginx檔到nginx的安裝目錄sbin/下# cp objs/nginx /usr/local/nginx/sbin/ 測試一下新複製過來5.檔案生效狀況:# /usr/local/nginx/sbin/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 successful6. 讓nginx把nginx.pid檔案修改成nginx.pid.oldbin,隨即啟動nginx,實現不間斷服務運作# kill -USR2 `cat /usr/local/nginx/nginx.pid`(发送平滑升级信号将旧的nginx.pid文件添加后缀nginx.pid.oldbin)#kill -WINCH(平缓停止worker process) `cat /usr/local/nginx/nginx.pid.oldbin
# kill -QUIT `cat /usr/local/nginx/nginx.pid.oldbin`7.升級完成了,最後在看一下升級後的版本# /usr/local/nginx/sbin/nginx -v
nginx: nginx version: nginx/1.0.5
以上就介紹了nginx之平滑升級詳解,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31