码迷,mamicode.com
首页 > 系统相关 > 详细

Linux----------nginx平滑升级

时间:2019-06-11 11:02:31      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:figure   编译安装   arc   平滑升级   tar   lin   prefix   bin   配置文件   

一、添加新功能

//查看编译参数并复制参数
nginx -V

//下载新的echo 模块
https://github.com/chendao2015/echo-nginx-module下载
https://github.com/openresty/echo-nginx-module/archive/v0.61.tar.gz

//编译参数
./configure --复制参数 --add
生成一个objs/nginx

//复制命令文件
cp /usr/local/nginx/sbin/nginx{,.old}
\cp objs/nginx /usr/local/nginx/sbin/nginx

//安装
make
make install

//重新启动nginx
pkill nginx
nginx

二、升级nginx

//查看编译参数并复制参数
nginx -V

//编译安装
./configure --prefix/usr/local/nginx-1.15 --复制参数
make
make install

//复制配置文件
cp /usr/local/nginx/conf/nginx.conf{,.old}
cp /usr/local/nginx/conf/nginx.conf /usr/local/nginx-1.15/conf/nginx.conf

//杀死原有nginx进程,启动新版本的nginx
pkill nginx
/usr/local/nginx-1.15/sbin/nginx

Linux----------nginx平滑升级

标签:figure   编译安装   arc   平滑升级   tar   lin   prefix   bin   配置文件   

原文地址:https://www.cnblogs.com/wangchengshi/p/11002260.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!