码迷,mamicode.com
首页 > 其他好文 > 详细

keepalived引用脚本的一点回顾

时间:2020-02-04 23:38:20      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:router   int   address   vrrp   bash   _id   优先   master   killall   

! Configuration File for keepalived

global_defs {
   router_id LVS_DEVEL
}

vrrp_script check_haproxy {
    script "killall -0 haproxy"
    #执行这条命令,判断返回值,该进程存在返回值为0,否则为其它
    interval 3
    weight -55
    #如果不为0,优先级-55
    fall 10
    rise 2
}

vrrp_instance VI_1 {
    state MASTER
    interface eth0
    virtual_router_id 51
    priority 250
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 35f18af7190d51c9f7f78f37300a0cbd
    }
    virtual_ipaddress {
        10.10.11.222
    }
    track_script {
        check_haproxy
    }
}

keepalived引用脚本的一点回顾

标签:router   int   address   vrrp   bash   _id   优先   master   killall   

原文地址:https://www.cnblogs.com/joinbestgo/p/12261797.html

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