概述
升级Nginx服务器
1)编译新版本nginx软件
- [root@proxy ~]# tar -zxvf nginx-1.12.2.tar.gz
- [root@proxy ~]# cd nginx-1.12.2
- [root@proxy nginx-1.12.2]# ./configure
- > --prefix=/usr/local/nginx
- > --user=nginx
- > --group=nginx
- > --with-http_ssl_module
- [root@proxy nginx-1.12.2]# make
2) 备份老的nginx主程序,并使用编译好的新版本nginx替换老版本
- [root@proxy nginx-1.12.2]# mv /usr/local/nginx/sbin/nginx
- >/usr/local/nginx/sbin/nginxold
- [root@proxy nginx-1.12.2]# cp objs/nginx /usr/local/nginx/sbin/ //拷贝新版本
- [root@proxy nginx-1.12.2]# make upgrade //升级
- #或者使用killall nginx杀死进程后再启动nginx。
- /usr/local/nginx/sbin/nginx -t
- nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
- nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
- kill -USR2 `cat /usr/local/nginx/logs/nginx.pid`
- sleep 1
- test -f /usr/local/nginx/logs/nginx.pid.oldbin
- kill -QUIT `cat /usr/local/nginx/logs/nginx.pid.oldbin`
- [root@proxy ~]# /usr/local/nginx/sbin/nginx –v //查看版本
步骤三:客户端访问测试
1)分别使用浏览器和命令行工具curl测试服务器页面
如果使用firefox火狐浏览器,注意在ssh远程的时候一定要加-X选项。
- [root@client ~]# firefox http://192.168.4.5
- [root@client ~]# curl http://192.168.4.5
最后
以上就是无心白开水为你收集整理的nginx服务器升级的全部内容,希望文章能够帮你解决nginx服务器升级所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复