Search This Blog

Monday, August 8, 2016

Keepalived not detect haproxy status on Debian Jessie

Keepalived not detect haproxy status on Debian Jessie

vi /etc/keepalived/keepalived.conf


vrrp_script chk_haproxy {           # Requires keepalived-1.1.13
script "killall -0 haproxy" # cheaper than pidof
interval 2 # check every 2 seconds
weight 2 # add 2 points of prio if OK
}

vrrp_instance VI_1 {
interface eth0
state MASTER
virtual_router_id 51
priority 101 # 101 on master, 100 on backup
virtual_ipaddress {
192.168.0.100
}
track_script {
chk_haproxy
}
}



The reason is keepall command does not installed!

Just install


apt-get install psmisc



Then everything works fine.

No comments:

Post a Comment