shell脚本放到crontab里定时执行

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

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


检测zookeeper进程脚本 check_zk.sh

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


检测mq进程脚本 check_mq.sh

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




编辑crontab 使用命令 crontab -e


#每隔1分钟检测一次
*/1 * * * * /home/ekanet/esb/scripts/check_zk.sh >> /home/ekanet/esb/scripts/zklog.log
*/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

source /etc/profile
原文链接:https://www.f2er.com/bash/390532.html

猜你在找的Bash相关文章