shell脚本, 无限循环检查rtm2是否存在,如果3次检查都不存在,重启rtm2,如果检查存在,sleep 5秒
时间: 2023-02-09 21:18:10 浏览: 102
System Center Operations Manager 2007 R2 RTM 部署文档
```bash
count=0
while :
do
if pgrep -x "rtm2" > /dev/null
then
count=0
sleep 5
else
count=$((count+1))
if [ $count -eq 3 ]
then
systemctl restart rtm2
count=0
fi
fi
done
```
这是一个无限循环的shell脚本,用于检查rtm2进程是否存在。如果3次检查都不存在,则重启rtm2,如果存在则 sleep 5 秒。
阅读全文