Keepalive+Atlas+DRBD+Heartbeat+mysql配置系列(二):shell脚本自动安装heartbeat
在centos6的时候可以直接yum安装,但到了centos7的时候,只能编译安装,故我找遍网上,终于发现了个可以在centos7里使用yum安装heartbeat的,现分享给大家.
系统:centos 7.x(64位)
环境ip:
node1(主节点)IP: 10.0.2.5 主机名:dbm5
node2(从节点)IP: 10.0.2.7 主机名:dbm7
虚拟IP地址(VIP): 10.0.2.10
1.准备工作
vim /etc/hosts
10.0.2.5 dbm5
10.0.2.7 dbm7
2.脚本内容:
cat /root/soft_shell/heartbeat.sh
#!/b...