Redis停止后自动重启解决方案

话不多说,直接上代码

#!/bin/bash
while true
do
count=`netstat -tunple | grep 6379 |  wc -l`
if [ 1 -gt $count ]; then
echo "Redis has stopped, restart..."
/etc/init.d/redis restart
sleep 1
else
#echo "Redis Run in system"
sleep 1
fi
done

然后在宝塔的定时任务里面设置一下定时就行了。

发布者:彬彬笔记,转载请注明出处:https://www.binbinbiji.com/jianzhanjiaoliu/2259.html

(0)
彬彬笔记彬彬笔记
上一篇 2021年7月14日
下一篇 2021年11月4日

相关推荐

发表回复

登录后才能评论
蜀ICP备14017386号-13