服务器之家:专注于服务器技术及软件下载分享
分类导航

云服务器|WEB服务器|FTP服务器|邮件服务器|虚拟主机|服务器安全|DNS服务器|服务器知识|Nginx|IIS|Tomcat|

服务器之家 - 服务器技术 - Nginx - Nginx平滑升级的详细操作方法

Nginx平滑升级的详细操作方法

2019-10-16 12:54nginx技术网 Nginx

这篇文章主要介绍了Nginx平滑升级的详细操作方法,适应编译安装ningx的情况,yum安装的直接用yum更新即可,需要的朋友可以参考下

一、平滑升级概述
Nginx方便地帮助我们实现了平滑升级。其原理简单概括,就是:
(1)在不停掉老进程的情况下,启动新进程。
(2)老进程负责处理仍然没有处理完的请求,但不再接受处理请求。
(3)新进程接受新请求。
(4)老进程处理完所有请求,关闭所有连接后,停止。
这样就很方便地实现了平滑升级。一般有两种情况下需要升级Nginx,一种是确实要升级Nginx的版本,另一种是要为Nginx添加新的模块。
二.、升级过程
具体的操作也很简单,如下:

(0)查看当前版本
在存放Nginx的可执行文件的目录下输入:

复制代码代码如下:
./nginx -V 

 

(1)下载新的Nginx版本并编译。

复制代码代码如下:
wget nginx-1.0.11.tar.gz  
tar zxvf nginx-1.0.11.tar.gz  
cd nginx-1.0.11  
./configure --add-module=/customized_module_0 --add-module=/customized_module_1  
make 

 

注意不要进行make install

(2)备份老版本的可执行文件

复制代码代码如下:
cd /usr/local/nginx/sbin  
sudo cp nginx nginx.old 

 

(3)修改配置文件
如果有必要的话,进行配置文件的修改。

(4)拷贝新的可执行文件

复制代码代码如下:
sudo cp /home/michael/tmp/nginx-1.0.11/objs/nginx /usr/local/nginx/sbin/ 

 

(5)升级

复制代码代码如下:
cd /home/michael/tmp/nginx-1.0.11  
make upgrade 

 

(6)清理多余文件

复制代码代码如下:
rm -rf /home/michael/tmp/nginx-1.0.11 

 

(7)查看Nginx版本

复制代码代码如下:
cd /usr/local/nginx/sbin  
./nginx -V 


三、观察进程变化

 

在我的机器上可以观察到,我配置的是10个worker进程,启动后观察到:

复制代码代码如下:
root      6241 10419  0 10:51 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx  
nobody    6242  6241  2 10:51 ?        00:00:00 nginx: worker process        
nobody    6243  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6244  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6245  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6246  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6247  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6248  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6249  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6250  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6251  6241  1 10:51 ?        00:00:00 nginx: worker process        
nobody    6252  6241  0 10:51 ?        00:00:00 nginx: cache manager process  
nobody    6253  6241  0 10:51 ?        00:00:00 nginx: cache loader process  
luming    6310 25051  0 10:51 pts/1    00:00:00 grep --color=auto nginx  
nobody    7995 10419  0 Jan12 ?        00:20:37 nginx: worker process is shutting down  
nobody    7996 10419  0 Jan12 ?        00:20:11 nginx: worker process is shutting down  
nobody    7998 10419  0 Jan12 ?        00:20:04 nginx: worker process is shutting down  
nobody    8003 10419  0 Jan12 ?        00:20:12 nginx: worker process is shutting down  
root     10419     1  0 Jan08 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx 

 

可见新的进程有1个master和10个worker,另外还有1个老的master(可以从时间上看出)和4个worker(其他6个老的worker已经处理完所有连接而shutdown了)。还有一个loader进程。过几秒种可以看到worker只有两个了:

复制代码代码如下:
root      6241 10419  0 10:51 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx  
nobody    6242  6241  1 10:51 ?        00:00:00 nginx: worker process        
nobody    6243  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6244  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6245  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6246  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6247  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6248  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6249  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6250  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6251  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6252  6241  0 10:51 ?        00:00:00 nginx: cache manager process  
nobody    6253  6241  0 10:51 ?        00:00:00 nginx: cache loader process  
luming    6430 25051  0 10:51 pts/1    00:00:00 grep --color=auto nginx  
nobody    7996 10419  0 Jan12 ?        00:20:11 nginx: worker process is shutting down  
nobody    8003 10419  0 Jan12 ?        00:20:12 nginx: worker process is shutting down  
root     10419     1  0 Jan08 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx 

 

再过一小会儿观察:

复制代码代码如下:
root      6241     1  0 10:51 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx  
nobody    6242  6241  0 10:51 ?        00:00:01 nginx: worker process        
nobody    6243  6241  0 10:51 ?        00:00:01 nginx: worker process        
nobody    6244  6241  0 10:51 ?        00:00:01 nginx: worker process        
nobody    6245  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6246  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6247  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6248  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6249  6241  0 10:51 ?        00:00:00 nginx: worker process        
nobody    6250  6241  0 10:51 ?        00:00:01 nginx: worker process        
nobody    6251  6241  0 10:51 ?        00:00:02 nginx: worker process        
nobody    6252  6241  0 10:51 ?        00:00:00 nginx: cache manager process  
luming    8680 25051  0 10:56 pts/1    00:00:00 grep --color=auto nginx 

 

Congratulations! You can upgrade your Nginx server gracefully.

延伸 · 阅读

精彩推荐
  • Nginxnginx rewrite 伪静态配置参数和使用例子

    nginx rewrite 伪静态配置参数和使用例子

    nginx下伪静态配置参数详细说明,使用nginx的朋友,nginx rewrite 伪静态配置参数和使用例子 附正则使用说明 ...

    服务器之家3102019-10-08
  • NginxNginx动静分离实现案例代码解析

    Nginx动静分离实现案例代码解析

    这篇文章主要介绍了Nginx动静分离实现案例代码解析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参...

    盗哥泡茶去了3382020-09-27
  • NginxNginx Rewrite使用场景及代码案例详解

    Nginx Rewrite使用场景及代码案例详解

    这篇文章主要介绍了Nginx Rewrite使用场景及代码案例详解,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可...

    盗哥泡茶去了11862020-09-27
  • Nginx通过Nginx规则重写URL去掉index.php不显示index.php

    通过Nginx规则重写URL去掉index.php不显示index.php

    Nginx不仅占用内存少,并发能力强,而且拓展功能丰富,可以通过安装模板来强化功能,也能通过规则优化,优化服务器并发处理能力,是建站的不二之选...

    Genius日记5872020-10-16
  • Nginxnginx ssl免密码重启教程详解

    nginx ssl免密码重启教程详解

    这篇文章给大家介绍了nginx 如何启动以及nginx ssl 免密码重启 的方法,非常不错,具有参考借鉴价值,需要的朋友参考下吧 ...

    mrr4272019-11-19
  • Nginx利用nginx和腾讯云免费证书制作https的方法

    利用nginx和腾讯云免费证书制作https的方法

    这篇文章主要介绍了利用nginx和腾讯云免费证书制作https的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧 ...

    dalaoyang5992019-12-30
  • Nginx如何优化Nginx的处理性能

    如何优化Nginx的处理性能

    Nginx是一个很强大的高性能Web和反向代理服务,它具有很多非常优越的特性,在连接高并发的情况下,Nginx是Apache服务不错的替代品。其特点是占有内存少,...

    Dockone.io5142020-12-11
  • NginxNginx location 和 proxy_pass路径配置问题小结

    Nginx location 和 proxy_pass路径配置问题小结

    本文是基于 location 的匹配末尾是否配置 / 和 proxy_pass 末尾是否配置 / ,进行测试,完全还原了整个测试过程,本文给大家介绍Nginx location 基本配置及相关配...

    自由早晚乱余生18742021-09-24