Keepalived设置非抢占模式.md
概述
有时候我们使用keepalived来处理数据库等系统的高可用,最不希望看到的情况就是已经死掉的机器又活了过来,因此非抢占是一个重要的配置。
Keepalived非抢占配置文件
#@MASTER配置
vrrp_instance VI_1 {
state BACKUP #master or slave
interface eth0 #interface
virtual_router_id 51 #router-id
priority 101 #priority
nopreempt
advert_int 1
authentication {
auth_type PASS
auth_pass ipcpu.com
}
virtual_ipaddress {
211.81.175.208 label eth0:1
}
}
#@BACKUP配置
vrrp_instance VI_1 {
state BACKUP #master or slave
interface eth0 #interface
virtual_router_id 51 #router-id
priority 100 #priority
advert_int 1
authentication {
auth_type PASS
auth_pass ipcpu.com
}
virtual_ipaddress {
211.81.175.208 label eth0:1
}
}
总结
Keepalived不抢占有两种写法,第一种就是上面的举例:
主 backup priority100 nopreempt
备 backup priority50
第二种就是讲优先级设置成一样的,这样后面启动的不会抢占。
主 backup priority100
备 backup priority100
转载请注明:IPCPU-网络之路 » Keepalived设置非抢占模式