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

生产环境下mycat高可用方案mycat+keepalive(1)

时间:2016-03-22 06:35:15      阅读:737      评论:0      收藏:0      [点我收藏+]

标签:mycat


#主master配置如下

cat  /etc/keepalived/keepalived.conf


global_defs {

   notification_email {

     failover@firewall.loc

   }

   #notification_email_from Alexandre.Cassen@firewall.loc

   #smtp_server 10.168.0.48

   #smtp_connect_timeout 10

   router_id nginx

}

 

vrrp_script chk_haproxy {

    script "/etc/keepalived/chk_haproxy.sh"

    interval 5

    weight 2

}

vrrp_instance ha_71 {

    state MASTER

    interface eth0

    virtual_router_id 71

    priority 150

    advert_int 5

    authentication {

        auth_type PASS

        auth_pass ha8888

    }

    track_script {

chk_haproxy 

    }

    virtual_ipaddress {

192.168.5.70/24 dev eth0 label eth0:1 

    }

}

 

}

#salve配置如下


 cat /etc/keepalived/keepalived.conf 

global_defs {

   notification_email {

     failover@firewall.loc

   }

   #notification_email_from Alexandre.Cassen@firewall.loc

   #smtp_server 10.168.0.48

   #smtp_connect_timeout 10

   router_id nginx

}

 

vrrp_script chk_haproxy {

    script "/etc/keepalived/chk_haproxy.sh"

    interval 5

    weight 2

}

vrrp_instance ha_71 {

    state BACKUP

    interface eth0

    virtual_router_id 71

    priority 100

    advert_int 5

    authentication {

        auth_type PASS

        auth_pass ha8888

    }

   track_script {

chk_haproxy

    }

    virtual_ipaddress {

192.168.5.70/24 dev eth0 label eth0:1 

    }

}

 

}


生产环境下mycat高可用方案mycat+keepalive(1)

标签:mycat

原文地址:http://huanghonglin.blog.51cto.com/11324462/1753683

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