nginx平滑升级

Posted Netonline

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx平滑升级相关的知识,希望对你有一定的参考价值。

原文发表于:2010-12-09
转载至cu于:2012-07-21

闲来无事把nginx服务器升级了,因为没有经常玩linux,记录下来以免将来再升级的时候又去查资料。

下载:

[[email protected]~]#wget http://nginx.org/download/nginx-0.*.*.tar.gz (版本号已修改)

解压:

[[email protected] ~]#tar zxvf  nginx-0.*.*.tar.gz (版本号已修改)

这里顺便把nginx的版本号修改了,起到一定的安全作用。

修改源码文件:

[[email protected] ~]#vim nginx-0.*.*/src/core/nginx.h
#define NGINX_VERSION      "*.$.&"   (版本号)
#define NGINX_VER          "net/" NGINX_VERSION  (服务器名字)
重新编译之前需要查看之前的nginx的安装信息:
[[email protected] ~]#/usr/local/nginx/sbin/nginx -V
得到信息(路径因人而异):
nginx: configure arguments: --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
编译,但不安装;在编译目录下的objs目录下的nginx文件即是新的执行文件:
[[email protected] nginx-0.*.*]#./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module
[[email protected] nginx-0.*.*]#make
备份原有nginx文件:
[[email protected] ~]#mv /usr/local/nginx/sbin/nginx /usr/local/nginx/sbin/nginx.old
将已经编译好的nginx文件复制到相应的执行路径下:
cp ~/nginx-0.*.*/objs/nginx /usr/local/nginx/sbin/nginx
测试,以免不能平滑升级:
[[email protected] ~]#/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 successful
测试通过则将nginx.pid修改为您nginx.pid.oldbin,同时启动新的nginx:
[[email protected] ~]#kill -USR2 `cat /usr/local/nginx/logs/nginx.pid`
退出原nginx:
[[email protected] ~]#kill -QUIT `cat /usr/loca/nginx/logs/nginx.pid.oldbin`
查验:
[[email protected] ~]#curl -I netonline.me
HTTP/1.1 200 OK
Server: net/*.$.&
Date: Thu, 09 Dec 2010 05:13:36 GMT

以上是关于nginx平滑升级的主要内容,如果未能解决你的问题,请参考以下文章

nginx平滑升级

使用 Nginx 实现平滑升级

Nginx 的平滑升级

Nginx 的平滑升级

nginx的平滑升级

openresty开发系列3--nginx的平滑升级