背景介绍
因为一些原因,比如说 Nginx 发现漏洞、应用一些新的模块等等,想对 Nginx 的版本进行更新,最简单的做法就是停止当前的 Nginx 服务,然后开启新的 Nginx 服务。但是这样会导致在一段时间内,用户是无法访问服务器,因此需要进行平滑升级。
源码下载
nginx 官网找到最新稳定版本。原先的版本为 nginx-1.18.0
http://nginx.org/en/download.html
# 安装编译后的路径 /usr/local/soft/nginx
mkdir -p /usr/local/soft && cd /usr/local/soft
wget http://nginx.org/download/nginx-1.22.1.tar.gz
解压源码
tar -xzvf nginx-1.22.1.tar.gz
旧版参数
查看当前版本启动参数,以便用于新版启动。
# 查看启动参数
/usr/local/soft/nginx/sbin/nginx -V
如上图得知,原先 nginx 的启动命令为
--prefix=/usr/local/soft/nginx --with-http_stub_status_module --with-http_ssl_module --add-module=/usr/local/soft/nginx/modules/nginx-upstream-fair-master --add-module=/usr/local/soft/nginx/modules/ngx_cache_purge-2.3
编译新版
确认是在新版源码目录下执行,如果不是则需要进入新版本源码目录。
cd /usr/local/soft/nginx-1.22.1
# 对新版本 nginx 进行配置
./configure --prefix=/usr/local/soft/nginx --with-http_stub_status_module --with-http_ssl_module --add-module=/usr/local/soft/nginx/modules/nginx-upstream-fair-master --add-module=/usr/local/soft/nginx/modules/ngx_cache_purge-2.3
接着进行 make,注意不是 make install,否则后果很严重。
make
这样,最新版本 nginx 的目录下会多出来一个 objs 目录,如下图所示:
备份旧版
备份当前版本的 nginx。
mv /usr/local/soft/nginx/sbin/nginx /usr/local/soft/nginx/sbin/nginx.old
拷贝新版
将编译好的 objs 目录下的 nginx 文件,复制到 /usr/local/soft/nginx/sbin 目录。
cp /usr/local/soft/nginx-1.22.1/objs/nginx /usr/local/soft/nginx/sbin/nginx
命令升级
make upgrade 命令升级。
cd /usr/local/soft/nginx-1.22.1 && make upgrade
检查验证
可看到版本已变为 1.22.1,并且过程中服务不中断。
/usr/local/soft/nginx/sbin/nginx -v