美文网首页
监控进程发邮件

监控进程发邮件

作者: Neo_xu | 来源:发表于2018-08-08 15:37 被阅读0次
    #!/bin/sh
    tomcatID=$(ps -ef|grep *** |grep -w '***'|grep -v 'grep'|awk '{print $2}')
    if [[ $tomcatID ]]
    then
    echo "*** is running."
    else
    echo "*** is down!"
    echo "cd /home/apache-tomcat-7.0.63/bin to start tomcat!"|mail -s "你要发的提示内容"  ***@163.com,***@163.com
    fi
    

    相关文章

      网友评论

          本文标题:监控进程发邮件

          本文链接:https://www.haomeiwen.com/subject/ypkxbftx.html