高性能Web服务器Nginx的配置与部署研究(14)平滑升级你的Nginx
1、概述(可以直接跳过看第2部分)
Nginx方便地帮助我们实现了平滑升级。其原理简单概括,就是:
(1)在不停掉老进程的情况下,启动新进程。
(2)老进程负责处理仍然没有处理完的请求,但不再接受处理请求。
(3)新进程接受新请求。
(4)老进程处理完所有请求,关闭所有连接后,停止。
这样就很方便地实现了平滑升级。一般有两种情况下需要升级Nginx,一种是确实要升级Nginx的版本,另一种是要为Nginx添加新的模块。
2. 升级过程
具体的操作也很简单,如下:
(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
3、观察进程变化
在我的机器上可以观察到,我配置的是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.
高性能Web服务器Nginx的配置与部署研究(14)平滑升级你的Nginx的更多相关文章
- 高性能Web服务器Nginx的配置与部署研究(13)应用模块之Memcached模块+Proxy_Cache双层缓存模式
通过<高性能Web服务器Nginx的配置与部署研究——(11)应用模块之Memcached模块的两大应用场景>一文,我们知道Nginx从Memcached读取数据的方式,如果命中,那么效率 ...
- 高性能Web服务器Nginx的配置与部署研究(7)核心模块之主模块的非测试常用指令
1. error_log 含义:指定存储错误日志的文件 语法:error_log <file> [debug|info|notice|warn|error|crit] 缺省:${prefi ...
- 高性能Web服务器Nginx的配置与部署研究(11)应用模块之Memcached模块的两大应用场景
一.应用场景1 最近在一个项目中,用到了Nginx的Memcached模块,所以就在这个系列教程中提前把Memcached模块拿出来写了.另外发现最近我的 博客文章频频被很多用采集器的网站拿走,帮我发 ...
- 高性能Web服务器Nginx的配置与部署研究(2)Nginx入门级配置与部署及“Hello World”
1. Nginx 程序包 目前最新的开发版本时1.1.12: Linux/Unix:nginx-1.1.12.tar.gz Windows:nginx-1.1.12.zip 我们可以下载稳定版尝试: ...
- 高性能Web服务器Nginx的配置与部署研究(1)Nginx简介及入门示例
概述 从这篇博文起,将带领读者们一起领略Nginx的强大. Nginx 是做什么用的?我相信很多朋友都已经使用过,如果你没有,那么你一定知道以下这些名称之一:Apache,Lighttpd,Tomca ...
- 高性能Web服务器Nginx的配置与部署研究(3)Nginx请求处理机制
1. 处理什么样的请求 处理访问到 Nginx 所在 IP 地址的请求,并且这些请求的 HTTP 头信息中的 Host 为所要处理的域名(如下以80端口为例),如下几个 server 就对应响应的请求 ...
- 高性能Web服务器Nginx的配置与部署研究(4)Nginx常用命令
1. 启动 Nginx poechant@ubuntu:sudo ./sbin/nginx 2. 停止 Nginx poechant@ubuntu:sudo ./sbin/nginx -s stop ...
- 高性能Web服务器Nginx的配置与部署研究(8)核心模块之事件模块
一.事件模块的作用是什么? 用来设置Nginx处理链接请求. 二.相关指令 1. accept_mutex 含义:设置是否使用连接互斥锁进行顺序的accept()系统调用. 语法:accept_mut ...
- 高性能Web服务器Nginx的配置与部署研究系列(1)-- 入门 hello work
简介: Nginx 是一个基于 BSD-like 协议.开源.高性能.轻量级的HTTP服务器.反向代理服务器以及电子邮件(SMTP.POP3.IMAP)服务器.Nginx 是由一个俄罗斯的名叫“Igo ...
随机推荐
- 数据库视图View的使用
一.视图的概念: 概念: 视图是指计算机数据库中的视图,是一个虚拟表,其内容由查询定义.同真实的表一样,视图包含一系列带有名称的列和行数据.但是,视图并不在数据库中以存储的数据值集形式存在.行和列数据 ...
- Linux下gdb线程的调试
多线程的调试命令 1.info threads: 这条命令显示的是当前可调试的所有线程,GDB会给每一个线程都分配一个ID.前面有*的线程是当前正在调试的线程. 2.thread ID: 切换到当前调 ...
- Python 函数 -xrange()
xrange() xrange() 函数用法与 range 完全相同,所不同的是生成的不是一个数组,而是一个生成器. 语法: xrange(stop) xrange(start, stop[, ste ...
- Rabbitmq交换器Exchange和消息队列
通常我们谈到队列服务, 会有三个概念: 发消息者.队列.收消息者,RabbitMQ 在这个基本概念之上, 多做了一层抽象, 在发消息者和 队列之间, 加入了交换器 (Exchange). 这样发消息者 ...
- Nginx.PHP配置Smarty
下载http://smarty.net: 解压 -> 将 libs 文件夹重命名 smartyLibs -> 放置在自己服务器的 usr/local/lib/ 中 (/usr/local/ ...
- 阻塞队列之三:SynchronousQueue同步队列 阻塞算法的3种实现
一.SynchronousQueue简介 Java 6的并发编程包中的SynchronousQueue是一个没有数据缓冲的BlockingQueue,生产者线程对其的插入操作put必须等待消费者的移除 ...
- 使用apache common-io 监控文件变化
package common.io; import org.apache.commons.io.filefilter.FileFilterUtils; import org.apache.common ...
- JNI的一个简单实例
本例子使用的操作系统MacOS, 64位JVM. JNI编写的几个步骤如下: 编写Java代码,并注明native方法: public class HelloJni { public native v ...
- Ubuntu12.10下Python(cx_Oracle)访问Oracle解决方案
第一步:下载安装cx_Oracle 下载地址:http://sourceforge.net/projects/cx-oracle/files/5.1.2/,下载cx_Oracle的rmp安装文件,注意 ...
- Go - 类型与变量
类型 Go 语言中的类型与其他语言类似,比较特殊的有以下几个: bool 类型 - 它的值只能是 true 与 false. int / uint - 它们的长度会根据操作系统的不同(32/64 bi ...