博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
平滑升级你的Nginx
阅读量:5305 次
发布时间:2019-06-14

本文共 4297 字,大约阅读时间需要 14 分钟。

1、概述(可以直接跳过看第2部分)

Nginx方便地帮助我们实现了平滑升级。其原理简单概括,就是:

 

(1)在不停掉老进程的情况下,启动新进程。

(2)老进程负责处理仍然没有处理完的请求,但不再接受处理请求。

(3)新进程接受新请求。

(4)老进程处理完所有请求,关闭所有连接后,停止。

 

这样就很方便地实现了平滑升级。一般有两种情况下需要升级Nginx,一种是确实要升级Nginx的版本,另一种是要为Nginx添加新的模块。

 

2. 升级过程

具体的操作也很简单,如下:

 

(0)查看当前版本

在存放Nginx的可执行文件的目录下输入:

 

[java]   
 
  1. ./nginx -V  

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

 

 

[java]   
 
  1. wget nginx-1.0.11.tar.gz  
  2. tar zxvf nginx-1.0.11.tar.gz  
  3. cd nginx-1.0.11  
  4. ./configure --add-module=/customized_module_0 --add-module=/customized_module_1  
  5. make  

注意不要进行make install

 

 

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

 

[java]   
 
  1. cd /usr/local/nginx/sbin  
  2. sudo cp nginx nginx.old  

(3)修改配置文件

 

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

 

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

 

[java]   
 
  1. sudo cp /home/michael/tmp/nginx-1.0.11/objs/nginx /usr/local/nginx/sbin/  

(5)升级

 

 

[java]   
 
  1. cd /home/michael/tmp/nginx-1.0.11  
  2. make upgrade  

 

 

(6)清理多余文件

 

[java]   
 
  1. rm -rf /home/michael/tmp/nginx-1.0.11  

(7)查看Nginx版本

 

 

[java]   
 
  1. cd /usr/local/nginx/sbin  
  2. ./nginx -V  

 

3、观察进程变化

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

 

[plain]   
 
  1. root      6241 10419  0 10:51 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx  
  2. nobody    6242  6241  2 10:51 ?        00:00:00 nginx: worker process        
  3. nobody    6243  6241  0 10:51 ?        00:00:00 nginx: worker process        
  4. nobody    6244  6241  0 10:51 ?        00:00:00 nginx: worker process        
  5. nobody    6245  6241  0 10:51 ?        00:00:00 nginx: worker process        
  6. nobody    6246  6241  0 10:51 ?        00:00:00 nginx: worker process        
  7. nobody    6247  6241  0 10:51 ?        00:00:00 nginx: worker process        
  8. nobody    6248  6241  0 10:51 ?        00:00:00 nginx: worker process        
  9. nobody    6249  6241  0 10:51 ?        00:00:00 nginx: worker process        
  10. nobody    6250  6241  0 10:51 ?        00:00:00 nginx: worker process        
  11. nobody    6251  6241  1 10:51 ?        00:00:00 nginx: worker process        
  12. nobody    6252  6241  0 10:51 ?        00:00:00 nginx: cache manager process  
  13. nobody    6253  6241  0 10:51 ?        00:00:00 nginx: cache loader process  
  14. luming    6310 25051  0 10:51 pts/1    00:00:00 grep --color=auto nginx  
  15. nobody    7995 10419  0 Jan12 ?        00:20:37 nginx: worker process is shutting down  
  16. nobody    7996 10419  0 Jan12 ?        00:20:11 nginx: worker process is shutting down  
  17. nobody    7998 10419  0 Jan12 ?        00:20:04 nginx: worker process is shutting down  
  18. nobody    8003 10419  0 Jan12 ?        00:20:12 nginx: worker process is shutting down  
  19. 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只有两个了:

 

 

[plain]   
 
  1. root      6241 10419  0 10:51 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx  
  2. nobody    6242  6241  1 10:51 ?        00:00:00 nginx: worker process        
  3. nobody    6243  6241  0 10:51 ?        00:00:00 nginx: worker process        
  4. nobody    6244  6241  0 10:51 ?        00:00:00 nginx: worker process        
  5. nobody    6245  6241  0 10:51 ?        00:00:00 nginx: worker process        
  6. nobody    6246  6241  0 10:51 ?        00:00:00 nginx: worker process        
  7. nobody    6247  6241  0 10:51 ?        00:00:00 nginx: worker process        
  8. nobody    6248  6241  0 10:51 ?        00:00:00 nginx: worker process        
  9. nobody    6249  6241  0 10:51 ?        00:00:00 nginx: worker process        
  10. nobody    6250  6241  0 10:51 ?        00:00:00 nginx: worker process        
  11. nobody    6251  6241  0 10:51 ?        00:00:00 nginx: worker process        
  12. nobody    6252  6241  0 10:51 ?        00:00:00 nginx: cache manager process  
  13. nobody    6253  6241  0 10:51 ?        00:00:00 nginx: cache loader process  
  14. luming    6430 25051  0 10:51 pts/1    00:00:00 grep --color=auto nginx  
  15. nobody    7996 10419  0 Jan12 ?        00:20:11 nginx: worker process is shutting down  
  16. nobody    8003 10419  0 Jan12 ?        00:20:12 nginx: worker process is shutting down  
  17. root     10419     1  0 Jan08 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx  

再过一小会儿观察:

 

 

[plain]   
 
  1. root      6241     1  0 10:51 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx  
  2. nobody    6242  6241  0 10:51 ?        00:00:01 nginx: worker process        
  3. nobody    6243  6241  0 10:51 ?        00:00:01 nginx: worker process        
  4. nobody    6244  6241  0 10:51 ?        00:00:01 nginx: worker process        
  5. nobody    6245  6241  0 10:51 ?        00:00:00 nginx: worker process        
  6. nobody    6246  6241  0 10:51 ?        00:00:00 nginx: worker process        
  7. nobody    6247  6241  0 10:51 ?        00:00:00 nginx: worker process        
  8. nobody    6248  6241  0 10:51 ?        00:00:00 nginx: worker process        
  9. nobody    6249  6241  0 10:51 ?        00:00:00 nginx: worker process        
  10. nobody    6250  6241  0 10:51 ?        00:00:01 nginx: worker process        
  11. nobody    6251  6241  0 10:51 ?        00:00:02 nginx: worker process        
  12. nobody    6252  6241  0 10:51 ?        00:00:00 nginx: cache manager process  
  13. luming    8680 25051  0 10:56 pts/1    00:00:00 grep --color=auto nginx  

 

Congratulations! You can upgrade your Nginx server gracefully.

转载于:https://www.cnblogs.com/felixzh/p/9016067.html

你可能感兴趣的文章
大数据告诉你互联网到底有多大?完全超出你想象!
查看>>
C语言输入日期计算是该年的第几天
查看>>
Caliburn v2 变更-模块化
查看>>
Python之路,Day3 - Python基础3
查看>>
实验 4 在分支循环结构中调用自定义函数
查看>>
Java学习笔记-3.类与对象
查看>>
力扣——车的可用捕货量
查看>>
Redis参数
查看>>
当多个客户请求一个servlet时,引擎为每个客户启动一个线程,那么servlet类的成员变量被所有的线程共享?...
查看>>
jquery更改输入框type为密码框password
查看>>
Usb设备驱动0:从usb设备被发现开始
查看>>
如何有效表达自己的想法
查看>>
ORA-02050故障诊断一例
查看>>
mysql sql灵活运用
查看>>
linux 查看并终止进程
查看>>
android控制控制的显示顺序
查看>>
无法识别的属性“targetFramework”。请注意属性名称区分大写和小写。错误解决的方法...
查看>>
SuiteScript 2.0 Error: SSS_INVALID_SRCH_FILTER_EXPR_TYPE
查看>>
Web前端从入门到精通-10 css简介——盒模型2
查看>>
滚动条
查看>>