linux下启动和终止JAVA程序shell脚本

1.启动脚本start.sh

#run application backgroud
nohup java -jar chess-admin-1.0-SNAPSHOT.jar >/dev/null 2>&1 &
#record the process id
echo $!>pid

 

2.终止脚本stop.sh

kill `cat pid`

 或者查询pid后终止

kill `jps -l | grep chess-admin | awk '{print $1}'`

 或

kill `jps -l |awk '$2~"chess-admin"{print $1}'`

 

posted @ 2018-05-16 11:58  追极  阅读(4218)  评论(0编辑  收藏  举报