首先查看咱们的nginx版本 通过nginx -V
下载新的版本,通过这个rz
[root@localhost nginx-1.20.2]# tar -zxvf nginx-1.12.0.tar.gz
[root@localhost nginx-1.20.2]# cd nginx-1.12.0/
配置一下新版本
[root@localhost nginx-1.12.0]# ./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_stub_status_module
然后编译千万不要安装
[root@localhost nginx-1.12.0]# make
文件替换
[root@localhost sbin]# mv /usr/local/nginx/sbin/nginx/ /root/nginx-1.20.2/nginx-1.12.0/
mv objs/nginx /usr/local/nginx/sbin/
杀死主进程
[root@localhost nginx-1.12.0]# kill -USR2 cat /usr/local/nginx/logs/nginx.pid
启动nginx
标签:演示,local,升级,nginx,usr,1.12,root,localhost From: https://www.cnblogs.com/xiaotao188/p/17932475.html