#!/bin/bash
ID=`ps -ef |grep 包名.jar | grep -v 'grep' | awk '{print $2}'` ##查找正在执行的指定包名进程id
echo $ID ## 打印正在执行的进程id
echo "--------------"
kill -9 $ID ## 杀死进程的指令
echo "killed $ID" ## 打印杀死进程的id
sleep 2
echo "restart begin" ## 打印开始重启提示语句
source /etc/profile
nohup java -jar 包名.jar > /usr/local/path/nohup.out & ## 启动jar包指令
processID=`ps -ef |grep 包名.jar | grep -v 'grep' | awk '{print $2}'` ## 获取重启后的进程id
echo "restart success $processID" ## 打印重启后的进程id
给shell脚本赋权限
chmod +x autoRestart.sh #文件变为可执行文件,可以看到文件名变色
chmod -R 777 文件名 赋权限
在linux上设置一个定时任务 执行这个脚本即可
//编辑定时任务
crontab -e
30 6 * * * /usr/local/path/autoRestart.sh
*/2 * * * * /usr/local/path/autoRestart.sh
//查看定时器列表
crontab -l
//刷新定时器配置
/sbin/service crond reload
//定时器日志
tail -f /var/log/cron