keepalived费抢占式高可用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了keepalived费抢占式高可用相关的知识,希望对你有一定的参考价值。

master: 192.168.108.18
slave: 192.168.108.19
vip: 192.168.108.17

master: keepalived.conf
global_defs {
    notification_email {
            ****@****.com
    }

    notification_email.from [email protected]
    smtp_server ****
    smtp_connect_timeout 30
    route_id LVS_DEVEL
}

vrrp_script chk_nginx_port {
    script "/etc/keepalived/nginx_pid.sh"
    interval 2
}

vrrp_instance VI_1 {
    state BACKUP
    nopreempt
    interface eth0
    virtual_router_id 51
    priority 100
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }

    track_script {
        chk_nginx_port
    }

    virtual_ipaddress {
        192.168.108.17
    }
}

slave: keepalived.conf
global_defs {
    notification_email {
            ****@****.com
    }

    notification_email.from [email protected]
    smtp_server ****
    smtp_connect_timeout 30
    route_id LVS_DEVEL
}

vrrp_script chk_nginx_port {
    script "/etc/keepalived/nginx_pid.sh"
    interval 2
}

vrrp_instance VI_1 {
    state BACKUP
    interface eth0
    virtual_router_id 51
    priority 90
    advert_int 1
    authentication {
        auth_type PASS
        auth_pass 1111
    }

    track_script {
        chk_nginx_port
    }

    virtual_ipaddress {
        192.168.108.17
    }
}

/etc/keepalived/nginx_pid.sh
#!/bin/bash

nginx_pid=`ps aux | grep nginx | grep -v grep | grep master | awk ‘{print $2}‘`
if [[ $nginx_pid != "" ]]
then
    exit 0
else
    exit 1
fi


本文出自 “ubuntu” 博客,请务必保留此出处http://thankinglove.blog.51cto.com/2311485/1897515

以上是关于keepalived费抢占式高可用的主要内容,如果未能解决你的问题,请参考以下文章

Keepalived+Nginx实现高可用(HA)

haproxy高可用之非抢占keepalived

干货 | Keepalived高可用服务配置实例

干货 | Keepalived高可用服务配置实例

Nginx+keepalived实现高可用

配置Keepalived实现HTTPD高可用