Files
CmiiDeploy/0-archived/4-广西移动项目/高可用配置/master高可用/apiserver_check.sh
2026-05-19 14:28:44 +08:00

11 lines
249 B
Bash

#!/bin/bash
COUNT=`ps -C haproxy --no-header |wc -l`
if [ $COUNT -eq 0 ];then
/usr/local/haproxy/sbin/haproxy -f /etc/haproxy/haproxy.cfg
sleep 2
if [ `ps -C haproxy --no-header |wc -l` -eq 0 ];then
killall keepalived
fi
fi