#Linux Keepalived 双机热备
1.keepalived的安装
[root@master ~]# yum install -y keepalived
2.keepalived主节点
global_defs { router_id NodeA } vrrp_instance VI_1 { state MASTER #设置为主服务器 interface eth0 #监测网络接口 virtual_router_id 51 #主、备必须一样 priority 100 #(主、备机取不同的优先级,主机值较大,备份机值较小,值越大优先级越高) advert_int 1 #VRRP Multicast广播周期秒数 authentication { auth_type PASS #VRRP认证方式,主备必须一致 auth_pass 1111 #(密码) } virtual_ipaddress { 192.168.8.100/24 #VRRP HA虚拟地址 }
3.keepalived备节点
global_defs { router_id NodeB } vrrp_instance VI_1 { state BACKUP #设置为主服务器 interface eth0 #监测网络接口 virtual_router_id 51 #主、备必须一样 priority 90 #(主、备机取不同的优先级,主机值较大,备份机值较小,值越大优先级越高) advert_int 1 #VRRP Multicast广播周期秒数 authentication { auth_type PASS #VRRP认证方式,主备必须一致 auth_pass 1111 #(密码) } virtual_ipaddress { 192.168.8.100/24 #VRRP HA虚拟地址 }
4.启动
[root@master ~]# /etc/init.d/keepalived start
5.查看log消息:
tail -f /var/log/messages