微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

nginx集群同步方案

之前公司同事写过rsync加触发Nginx reload脚本,适合Nginx配置内容完全一致的情况。

今天写一个同步指定文件的脚本,修改完主服务器。使用scp传输到其他Nginx服务器上重启Nginx的脚本。

 

#!/bin/bash
file=$1

if [ -z "$file" ];then
    echo "请使用$0 文件名方式,例如: $? el.conf"
    exit 1
fi


function trans(){
    server=("10.0.2.5" "10.0.2.6" "10.0.2.7")
    cd /etc/Nginx/
    for s in ${server[@]}
    do
        if [ $file == "Nginx.conf" ];then
            scp $file root@${s}::/etc/Nginx/
        else
            scp conf.d/$file root@${s}::/etc/Nginx/conf.d/
        fi
        ssh root@${s} "Nginx -t && Nginx -s reload"
    done
}

Nginx -t && Nginx -s reload && trans

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐