shell脚本放到crontab里定时执行

前端之家收集整理的这篇文章主要介绍了shell脚本放到crontab里定时执行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

需求需要定时检查zookeeper进程和mq进程,当进程不存在时去需要自动启动,把检查进程的脚本写好后,添加到crontab中 设置定时多久执行。


检测zookeeper进程脚本 check_zk.sh

  1. #!/bin/sh
  2. #echo `date`
  3. source /etc/profile
  4. PID=`ps aux | grep QuorumPeerMain | grep -v "grep" |wc -l`
  5. #pid=`ps aux | grep QuorumPeerMain | grep -v "grep"`
  6. echo $PID
  7. while [ $PID -eq 0 ]; do
  8. echo `date`
  9. echo '开始启动zk脚本'
  10. /home/ekanet/esb/zookeeper-3.4.6/bin/zkServer.sh start &
  11. sleep 1
  12. exit 0
  13. done


检测mq进程脚本 check_mq.sh

  1. #!/bin/sh
  2. #echo `date`
  3. source /etc/profile
  4. PID=`ps aux | grep activemq.jar | grep -v "grep" |wc -l`
  5. #pid=`ps aux | grep activemq.jar | grep -v "grep"`
  6. echo $PID
  7. while [ $PID -eq 0 ]; do
  8. echo `date`
  9. echo '开始启动mq脚本'
  10. /home/ekanet/esb/apache-activemq-5.13.4/bin/activemq start &
  11. sleep 1
  12. exit 0
  13. done




编辑crontab 使用命令 crontab -e


  1. #每隔1分钟检测一次
  2. */1 * * * * /home/ekanet/esb/scripts/check_zk.sh >> /home/ekanet/esb/scripts/zklog.log
  3. */1 * * * * /home/ekanet/esb/scripts/check_mq.sh >> /home/ekanet/esb/scripts/mqlog.log

在实际使用中碰到直接执行脚本check_zk.sh能运行,但是放置到crontab中执行时并不能把zk服务启动起来。解决方法

有些shell脚本正常执行没问题,但放到crontab里就执行不成功,原因是因为crontab执行脚本的时候不会读取用户的环境变量等配置
解决方法
1.在shell前面export下$PATH

      • 1
      export $PATH

    2.或者source下/etc/profile

    1. source /etc/profile

    猜你在找的Bash相关文章