mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
522 B
32 lines
522 B
! Configuration File for keepalived
|
|
|
|
global_defs {
|
|
router_id MYSQL_MHA
|
|
}
|
|
|
|
vrrp_script chk_mysql_port {
|
|
script "{$SERVER_PATH}/scripts/chk.sh mysql"
|
|
interval 2
|
|
weight –5
|
|
fall 2
|
|
rise 1
|
|
}
|
|
|
|
vrrp_instance VI_MYSQL {
|
|
state MASTER
|
|
interface {$ETH_XX}
|
|
virtual_router_id 51
|
|
priority 101
|
|
advert_int 1
|
|
authentication {
|
|
auth_type PASS
|
|
auth_pass 1111
|
|
}
|
|
virtual_ipaddress {
|
|
192.168.10.10
|
|
}
|
|
|
|
track_script {
|
|
chk_mysql_port
|
|
}
|
|
} |