
正文
Linux 启动进程结束进程通用代码
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
linux启动springboot项目
start.sh
#!/bin/shrm -f tpidnohup java -jar restDate-0.0.-SNAPSHOT.jar --spring.profiles.active=dev > /dev/null >& &echo $! > tpidecho Start Success!
stop.sh
#!/bin/sh
APP_NAME=restDate-0.0.-SNAPSHOTtpid=`ps -ef|grep $APP_NAME|grep -v grep|grep -v kill|awk '{print $2}'`
if [ ${tpid} ]; then
echo 'Stop Process...'
kill - $tpid
fi
sleep
tpid=`ps -ef|grep $APP_NAME|grep -v grep|grep -v kill|awk '{print $2}'`
if [ ${tpid} ]; then
echo 'Kill Process!'
kill - $tpid
else
echo 'Stop Success!'
fi
kill.sh
#!/bin/sh
APP_NAME=restDate-0.0.-SNAPSHOTtpid=`ps -ef|grep $APP_NAME|grep -v grep|grep -v kill|awk '{print $2}'`
if [ ${tpid} ]; then
echo 'Kill Process!'
kill - $tpid
fi
注意修改
APP_NAME







