码迷,mamicode.com
首页 > 系统相关 > 详细

shell-检测服务是否运行,并记日志

时间:2018-01-09 20:09:09      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:else   执行   class   grep   stat   down   名称   crontab   当前时间   

目的:每隔*分钟检测服务是否运行;若运行中,则记录执行的进程名称;若不运行,记录当前时间

shell:

#!/bin/bash

date=`date +%Y%m%d`
log=/home/mono_${date}.log
err_log=/home/ERR_${date}.log

if [ ! -f ${log} ]; then
    touch ${log}
fi

if [ ! -f ${err_log} ]; then
    touch ${err_log}
fi

PATH=PATH:/sbin:/bin:/usr/bin

cmd=`ps -ef | grep mono | grep -v grep | wc -l`

if [ ${cmd} -eq 1 ]; then
    date >> ${err_log}
else
    date >> ${log}
    ps -ef | grep mono >> ${log}
    echo "*************************" >> ${log}
fi

crontab -e

*/5 * * * * /bin/sh /home/mono_stat.sh

shell-检测服务是否运行,并记日志

标签:else   执行   class   grep   stat   down   名称   crontab   当前时间   

原文地址:https://www.cnblogs.com/music378/p/8252930.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!