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的配置
ps:使用如下命令,查看定时启动日志
# m h dom mon dow command
# */ * * * * date >> ~/time.log
*/ * * * * /home/mpr/wanghy.sh > /home/mpr/time.log >& &