发布:thebaby 来源:net 【
】 本文介绍一段shell脚本,它可以检测某进程或某服务是否正在运行,然后以邮件通知。有需要的朋友参考下吧。
一个简单的shell脚本,用来找出关键的服务是否正在运行,适用于Linux或Unix操作系统。
转自: (转载请注明出处)
该脚本还可以使用电子邮件发送通知。
代码:
-
#!/bin/bash
-
# Name : service.chk 服务检测脚本
-
## 根据自己的环境修改
-
_pgrep="/usr/bin/pgrep"
-
_mail="/usr/bin/mail"
-
-
## 环境变量
-
_chklist="/usr/bin/php-cgi /usr/sbin/nginx /usr/sbin/lighttpd /usr/sbin/mysqld /usr/sbin/apache2 /usr/sbin/named /usr/sbin/pgsqld"
-
-
## yes | no
-
_sendemail="no"
-
-
## email
-
_email="test@jbxue.com"
-
-
## 不要修改如下配置
-
_failed="false"
-
_service="Service:"
-
-
_running() {
-
local p="${1##*/}"
-
local s="true"
-
$_pgrep "${p}" >/dev/null || { s="false"; _failed="true"; _service="${_service} $1,"; }
-
[[ "$s" == "true" ]] && echo "$1 running" || { echo -n "$1 not running"; [[ ! -f "$1" ]] && echo " [ $1 not found ]" || echo ; }
-
}
-
-
## header
-
echo "Service status on ${HOSTNAME} @ $(date)"
-
echo "------------------------------------------------------"
-
-
## Check if your service is running or not
-
for s in $_chklist
-
do
-
_running "$s"
-
done
-
-
## Send a quick email update (good for cron jobs) ##
-
[[ "$_failed" == "true" && "$_sendemail" == "yes" ]] && { _mess="$_service failed on $HOSTNAME @ $(date)";
-
$_mail -s 'Service not found' "$_email" < "${_mess}";
-
} /p>
结果:
您可能感兴趣的文章:
阅读(1956) | 评论(0) | 转发(0) |