为了账号安全,请及时绑定邮箱和手机立即绑定

判断Apache服务是否启动

#!/bin/bash
test=$(ps aux | grep httpd | grep -v grep)
#截取httpd进程,并把结果赋予变量test
if [ -n "$test" ]
#如果test的值不为空,则执行then中命令
then
echo "$(date) httpd is ok!" >> /tmp/autostart-acc.log
else
/etc/rc.d/init.d/httpd start & > /dev/null
echo "$(date) restart httpd !" >> /tmp/autostart-acc.log
fi

问题:我们写了Apache随时可以启动的这个脚本,假如我们Apache服务卡了,那我们没有执行这个脚本文件,也是没用啊???怎么让这个脚本随时再执行呢???


正在回答

1 回答

什么意思,卡了又没挂

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

判断Apache服务是否启动

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信