Keepalive:将新节点添加到以前的群集

时间:2018-06-11 12:10:53

标签: keep-alive ubuntu-server

我对我们正在制作的群集有疑问。

它包含2个节点,一个主节点和一个从节点,具有以下版本: Keepalived v1.2.7(08 / 14,2013)

我们要添加的新节点基于此版本: Keepalived v1.3.9(10 / 21,2017)

你知道我是否可以,并且如何在没有中断的情况下将这个新节点推入我的旧集群?

这是旧群集的配置文件:

global_defs {
    lvs_id cluster
}

vrrp_script check_nginx {
    script "killall -0 nginx"
    interval 1
    weight 2
}

vrrp_instance cluster {
    interface eth0
    virtual_router_id 1

    state MASTER
    priority 101
    advert_int 1

    authentication {
        auth_type PASS
        auth_pass **********
    }

    vrrp_unicast_bind 10.xx.xx.xx
    vrrp_unicast_peer 10.xx.xx.xx

    virtual_ipaddress {
        10.xx.xx.xx # First node
        10.xx.xx.xx # Second node
    }

    track_script {
        check_nginx
    }
}

我不知道是否可能,我不想让群集崩溃尝试一些动作。

谢谢!

1 个答案:

答案 0 :(得分:0)

因此,在这些版本之间共享两种配置似乎是不可能的。 我们忘记了这个想法。