Keepalived构建双主Mysql

1、安装keepalived-1.2.7
    #yum install keepalived
2、配置keepalived.conf
    #vi /etc/keepalived/keepalived.conf
! Configuration File for keepalived
global_defs {
   notification_email {
     acassen@firewall.loc
   }
   notification_email_from Alexandre.Cassen@firewall.loc
   smtp_server 127.0.0.1    (如果本机配置的话)
   smtp_connect_timeout 30
   router_id Mysql-HA
}

vrrp_instance VI_1 {
    state BACKUP     #两台配置此处均是BACKUP
    interface eth0     #注意网卡接口
    virtual_router_id 51
     priority 100          #优先级,另一台改为80     红色字体为两台服务器配置区别处
    advert_int 1
    nopreempt (可选配置) #不主动抢占资源,只在优先级高的机器上设置即可,优先级低的机器不设置
    authentication {
        auth_type PASS
        auth_pass 1111
    }
    virtual_ipaddress {
        192.168.63.225
    }
}

virtual_server 192.168.63.225 3306 {
    delay_loop 2         #每个2秒检查一次real_server状态
    lb_algo wrr            #LVS算法
    lb_kind DR            #LVS模式
    persistence_timeout 60       #会话保持时间
    protocol TCP
    real_server  192.168.63.165  3306 {   #IP为两台实体服务器的IP,注意区分IP      红色字体为两台服务器配置区别处
    weight 3
    TCP_CHECK {
    connect_timeout 10            #连接超时时间
    nb_get_retry 3                      #重连次数
    delay_before_retry 3            #重连间隔时间
    connect_port 3306               #健康检查端口
    }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值