发布工程nginx的优化

        公司发布系统比较随意,用户在使用的时候发布系统,会有一定的影响。修改nginx的指定,减少发布时对用户的感知。目前系统有2台服务器,通过nginx做负载均衡,发布之前先去掉要发布这台电脑的指向,发布完成后再更换nginx.conf,原先成原先的负载均衡。代码如下:

 

#/bin/sh
# tomcat webapp path
conf110="/usr/local/openresty/nginx/conf/89.conf"
nginx_ha1=10.3.3.88
#auto deployPath
nginxconf="/usr/local/openresty/nginx/conf/nginx.conf"
httpcode_rip1=`/usr/bin/curl -o /dev/null -s -w %{http_code} http://$nginx_ha1:8080/logout.htm?uuid=ddfdf`
echo "http$nginx_ha1: The wars is $httpcode_rip1!"
if [ x$httpcode_rip1 == "x200" ];
then
echo "restart nginx!"
cp "$conf110" "$nginxconf"
cd "/usr/local/openresty/nginx/sbin"
kill -HUP `cat /usr/local/openresty/nginx/logs/nginx.pid`
echo "restart end!"
fi

 

 

#/bin/sh
# tomcat webapp path
conf110="/usr/local/openresty/nginx/conf/all.conf"
nginx_ha1=10.3.3.89
#auto deployPath
nginxconf="/usr/local/openresty/nginx/conf/nginx.conf"

httpcode_rip1=`/usr/bin/curl -o /dev/null -s -w %{http_code} http://$nginx_ha1:8080/logout.htm?uuid=ddfdf`
echo "http$nginx_ha1: The wars is $httpcode_rip1!"
sleep 30
if [ x$httpcode_rip1 == "x200" ];
then
echo "restart nginx!"
cp "$conf110" "$nginxconf"
cd "/usr/local/openresty/nginx/sbin"
kill -HUP `cat /usr/local/openresty/nginx/logs/nginx.pid`
echo "restart end!"
fi

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值