Skip to content

Instantly share code, notes, and snippets.

@unicorn667
Created December 4, 2017 09:57
Show Gist options
  • Save unicorn667/58f211edfcbcb3ea83d31a13ce6a448e to your computer and use it in GitHub Desktop.
Save unicorn667/58f211edfcbcb3ea83d31a13ce6a448e to your computer and use it in GitHub Desktop.
keepalived with haproxy ha, slave
# Keepalived process identifier
lvs_id haproxy_DH_passive
}
# Script used to check if HAProxy is running
vrrp_script check_haproxy {
script "killall -0 haproxy"
interval 2
weight 2
}
# Virtual interface
# The priority specifies the order in which the assigned interface to take over in a failover
vrrp_instance VI_01 {
state SLAVE
interface eth0
virtual_router_id 51
priority 100
# The virtual ip address shared between the two loadbalancers
virtual_ipaddress {
10.10.1.20
}
track_script {
check_haproxy
}
}
~
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment