nginx平滑升级加载并加载新模块

需求
Nginx 并不支持tcp协议,所以后端的一些基于TCP的业务就只能通过其他高可用负载软件来完成了,如Haproxy。但在1.90发布后增加了tcp代理模块,而老版本nginx需通过附加module实现TCP代理
nginx -V  查看nginx相关信息
下载新的zip解压
cd到目录下
./configure --prefix=/etc/nginx --user=www --group=www  --with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_spdy_module --with-http_sub_module --with-http_xslt_module --with-mail --with-mail_ssl_module  --with-stream

make     #重要,不要make install!!!
 mv /usr/local/nginx/sbin/nginx  /usr/local/nginx/sbin/nginx.0719.old 
cp objs/nginx/usr/local/nginx/sbin/ 
make upgrade
kill -USR2 `cat /usr/local/nginx/logs/nginx.pid`
这步可能出现少安装的东西 直接yum(apt-get)安装即可
nginx -t 验证一下
主要配置
events {
        use epoll;
        worker_connections 20480;
        # multi_accept on;
}
stream {
    upstream server {
        hash $remote_addr consistent;
        server ip:10443 weight=1 max_fails=3 fail_timeout=10s;
    }
    upstream server1 {
        hash $remote_addr consistent;
        server ip:11443 weight=1 max_fails=3 fail_timeout=10s;
    }
    upstream server2 {
        hash $remote_addr consistent;
        server ip:12443 weight=1 max_fails=3 fail_timeout=10s;
    } 
server {  
        listen       6002;
        proxy_connect_timeout 1s;
        proxy_timeout 30s; 
        proxy_pass server;
       }
server {     
        listen       6001;
        proxy_connect_timeout 1s;
        proxy_timeout 30s; 
        proxy_pass server1;
       } 
server {
        listen       6006;
        proxy_connect_timeout 1s;
        proxy_timeout 30s;
        proxy_pass server2;
       }
}


 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值