Files
CmiiDeploy/4-广西移动项目/高可用配置/前端负载均衡/haproxy_check.sh
zeaslity 437acbeb63 add
2024-10-30 16:30:51 +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