-
-
Save amichaelgrant/6e6b2b018721caea94c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| BIND_NETWORK="192.168.5.0" | |
| SHARED_VIP="192.168.5.30" | |
| apt-get update | |
| apt-get install -y pacemaker ntp | |
| # Configure Corosync | |
| echo "START=yes" > /etc/default/corosync | |
| sed -i "s/bindnetaddr: 127.0.0.1/bindnetaddr: $BIND_NETWORK/g" /etc/corosync/corosync.conf | |
| # Start clustering software | |
| service corosync start | |
| service pacemaker start | |
| crm configure <<EOF | |
| primitive virtual-ip ocf:heartbeat:IPaddr \ | |
| params ip="$SHARED_VIP" | |
| property stonith-enabled=false | |
| commit | |
| EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment