我是靠谱客的博主 无心白开水,最近开发中收集的这篇文章主要介绍nginx服务器升级,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

升级Nginx服务器

1)编译新版本nginx软件

  1. [root@proxy ~]# tar -zxvf nginx-1.12.2.tar.gz
  2. [root@proxy ~]# cd nginx-1.12.2
  3. [root@proxy nginx-1.12.2]# ./configure
  4. > --prefix=/usr/local/nginx
  5. > --user=nginx
  6. > --group=nginx
  7. > --with-http_ssl_module
  8. [root@proxy nginx-1.12.2]# make            

2) 备份老的nginx主程序,并使用编译好的新版本nginx替换老版本

  1. [root@proxy nginx-1.12.2]# mv /usr/local/nginx/sbin/nginx
  2. >/usr/local/nginx/sbin/nginxold
  3. [root@proxy nginx-1.12.2]# cp objs/nginx /usr/local/nginx/sbin/     //拷贝新版本
  4. [root@proxy nginx-1.12.2]# make upgrade                            //升级
  5. #或者使用killall nginx杀死进程后再启动nginx。
  6. /usr/local/nginx/sbin/nginx -t
  7. nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
  8. nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
  9. kill -USR2 `cat /usr/local/nginx/logs/nginx.pid`
  10. sleep 1
  11. test -f /usr/local/nginx/logs/nginx.pid.oldbin
  12. kill -QUIT `cat /usr/local/nginx/logs/nginx.pid.oldbin`
  13. [root@proxy ~]# /usr/local/nginx/sbin/nginx –v                //查看版本

步骤三:客户端访问测试

1)分别使用浏览器和命令行工具curl测试服务器页面

如果使用firefox火狐浏览器,注意在ssh远程的时候一定要加-X选项。

  1. [root@client ~]# firefox http://192.168.4.5
  2. [root@client ~]# curl http://192.168.4.5

最后

以上就是无心白开水为你收集整理的nginx服务器升级的全部内容,希望文章能够帮你解决nginx服务器升级所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(30)

评论列表共有 0 条评论

立即
投稿
返回
顶部