sh 如果服务已停止,请发送电子邮件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 如果服务已停止,请发送电子邮件相关的知识,希望对你有一定的参考价值。

#!/bin/bash

###edit the following
service=service_name
email=your@email.address
sender=admin@your.server
###stop editing

host=`hostname -f`
if (( $(ps -ef | grep -v grep | grep $service | wc -l) > 0 ))
then
echo "$service is running"
else
/usr/sbin/service $service start
if (( $(ps -ef | grep -v grep | grep $service | wc -l) > 0 ))
then
subject="$service at $host has been started"
message="$service at $host wasn't running and has been started"
else
subject="$service at $host is not running"
message="$service at $host is stopped and cannot be started!!!"
fi
/var/qmail/bin/qmail-inject <<EOM
To: $email
From: $sender
Subject: $subject

$message

EOM
fi

以上是关于sh 如果服务已停止,请发送电子邮件的主要内容,如果未能解决你的问题,请参考以下文章

C# 为啥定时器会自动停止

Postfix与SendGrid集成,但后来停止发送电子邮件

如何停止Sharepoint发送已完成和已删除任务的任务逾期电子邮件

为啥对方收不到我的邮件而显示邮件发送成功?

sh 如果正在使用gunicorn 5000端口,请停止进程

如何以编程方式停止 Windows 服务?