一个shell for循环与case结合的脚本(监控程序状态)

本站所有内容来自互联网收集,仅供学习和交流,请勿用于商业用途。如有侵权、不妥之处,请第一时间联系我们删除!Q群:迪思分享

免费资源网 – https://freexyz.cn/

核心代码:

复制代码

代码如下:

#/bin/bash

set -x

HOSTS=”nginx mysql php-cgi”

for myhost in $HOSTS

  do

  count=(`ps aux |grep $myhost |grep -v grep |wc -l`)

  echo “$myhost”

  echo “$count”

if [ $count -eq 0 ]; then

  case $myhost in

  nginx)

  cd /usr/local/webserver/nginx/sbin/

  ./nginx

  echo “nginx has be down”

sleep 5

  mysql)

  /etc/init.d/mysqld start

  echo “mysql has be down”

  *)

  echo “what‘s the hell?”

esac

  fi

done

set +x

免费资源网 – https://freexyz.cn/


© 版权声明
THE END
★喜欢这篇文章吗?喜欢的话,麻烦动动手指支持一下!★
点赞11 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容