每天一个linux命令--定时启动

1、设置启动的时间,输入crontab -e命令

设置一种编辑器,进入编辑界面,设置启动的时间为每5分钟启动一次wanghy.sh脚本

# m h  dom mon dow   command
# */ * * * * date >> ~/time.log
*/ * * * * /home/mpr/wanghy.sh

wanghy.sh脚本如下,注意shell种类的开头

#!/bin/bash
source /etc/profile
echo "hello world"
cd /opt/virgo-tomcat-server-3.6..RELEASE; kill - `ps -ef|grep "java" |grep -v "grep"|awk '{print $2} '`
rm -rf /opt/virgo-tomcat-server-3.6..RELEASE/logs;
rm -rf /opt/virgo-tomcat-server-3.6..RELEASE/nohup.out;
rm -rf /opt/virgo-tomcat-server-3.6..RELEASE/work; nohup ./bin/startup.sh -clean -debug &

如果使用sh,则提示如下找不到javahome的配置

每天一个linux命令--定时启动

ps:使用如下命令,查看定时启动日志

# m h  dom mon dow   command
# */ * * * * date >> ~/time.log
*/ * * * * /home/mpr/wanghy.sh > /home/mpr/time.log >& &
上一篇:spring boot2 基于百度云apiface实现人脸检测与认证2


下一篇:Mongodb Manual阅读笔记:CH4 管理