Nginx的平滑升级
程序员文章站
2022-05-14 14:02:56
...
有时,我们需要对我们的服务器进行升级更高版本。此时,如果我们强行将服务器停止然后直接升级,这样原来在服务器上运行着的进程就会被影响。如何解决这个问题呢?可以通过平滑升级的方式来解决。平滑升级时,不会停掉在运行着的进程,这些进程会继续处理请求,但不会再接受新请求,在这些老进程在处理完还在处理的请求后,停止。此平滑升级的过程中,新开的进程会处理新请求。
1、查看当前版本
[root@Admin/]# cd /opt/nginx/sbin/
[root@Admin sbin]# ./nginx -V
nginx version: nginx/1.8.0
built by gcc 4.8.520150623 (Red Hat 4.8.5-4) (GCC)
configure arguments: --prefix=/opt/nginx/
2、升级到新的版本
下载新版安装包到/tmp目录下
[root@Admin tmp]# ls
nginx-1.8.0.tar.gz nginx-1.9.10.tar.gz
解压到当前目录
[root@Admin tmp]# tar -zxvf nginx-1.9.10.tar.gz 进入解压目录进行以下操作
[root@Admin tmp]# cd nginx-1.9.10
[root@Admin nginx-1.9.10]# ./configure
[root@Admin nginx-1.9.10]# make进入已安装的nginx目录下,备份当前使用的nginx
[root@Admin nginx-1.9.10]# cd /opt/nginx/sbin/
[root@Admin sbin]# cp nginx nginx.old
[root@Admin sbin]# ls
nginx nginx.old
将新版本的编译文件复制到安装目录
[root@Admin sbin]# cd /tmp/nginx-1.9.10
[root@Admin nginx-1.9.10]# ls
auto CHANGES CHANGES.ru conf configure contrib html LICENSE Makefile man objs README src
[root@Admin nginx-1.9.10]# cp -rfp objs/nginx /opt/nginx/sbin/
cp:是否覆盖"/opt/nginx/sbin/nginx"? y
查看是否升级成功
[root@Admin nginx-1.9.10]# cd /opt/nginx/sbin/
[root@Admin sbin]# ./nginx -V
nginx version: nginx/1.9.10
built by gcc 4.8.520150623 (Red Hat 4.8.5-4) (GCC)
configure arguments:
').addClass('pre-numbering').hide();
$(this).addClass('has-numbering').parent().append($numbering);
for (i = 1; i ').text(i));
};
$numbering.fadeIn(1700);
});
});
以上就介绍了Nginx的平滑升级,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
apache前端+nginx后端,nginx如何rewrite正确的地址
-
【已解决】求助centos6 nginx upstream不能转发到我自己定义的内部端口
-
nginx的zabbix 5.0安装部署的方法步骤
-
php升级 - 正在运行中的服务器,如何平滑从php5.2升级到php5.3 ,linux+php-fpm+nginx
-
Linux中Nginx反向代理下的tomcat集群的详解
-
使用nginx服务器时,php获取用户ip的方法
-
Win11安装升级时卡住了怎么办?Win11安装时卡死的解决办法
-
nginx worker进程循环的实现
-
Nginx + FastCGI 程序(C/C++) 搭建高性能web service的Demo及部署发布
-
基于nginx的PHP本地测试环境构建软件pinyshop发布_PHP教程