1. 程式人生 > >centos7使用crontab監測服務器的運行情況

centos7使用crontab監測服務器的運行情況

cront 服務 腳本文件 gre 監測 服務器 wc -l entos restart

  • 腳本文件:
    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監測服務器的運行情況