centos7使用crontab监测服务器的运行情况
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7使用crontab监测服务器的运行情况相关的知识,希望对你有一定的参考价值。
- 脚本文件:
vim /home/lee/test.sh#!/bin/bash if [ "`pgrep test | wc -l`" == "0" ]; then echo "`date ‘+%F %T‘`:[test]停止运行" >> /var/log/crontab/crontab.log systemctl restart test fi
- crontab配置:
crontab -e* * * * * . /home/lee/test.sh
以上是关于centos7使用crontab监测服务器的运行情况的主要内容,如果未能解决你的问题,请参考以下文章