(四)Springboot以jar包方式启动、关闭、重启脚本

Springboot以jar包方式启动、关闭、重启脚本

SpringBoot:
nohup java -jar zlkj-data-server-1.0-SNAPSHOT.jar --spring.profiles.active=prod > /usr/local/program/jgp.log & Java:
nohup java -jar JT808.jar > /usr/local/program/JT808.log &

1、启动

编写启动脚本startup.sh:

#!/bin/bash
echo Starting application
nohup java -jar springboot_helloword-0.0.1-SNAPSHOT.jar &

2、关闭

编写关闭脚本stop.sh:

#!/bin/bash
PID=$(ps -ef | grep springboot_helloword-0.0.1-SNAPSHOT.jar | grep -v grep | awk '{ print $2 }')
if [ -z "$PID" ]
then
echo Application is already stopped
else
echo kill $PID
kill $PID
fi

3、重启

编写重启脚本restart.sh:

#!/bin/bash
echo Stopping application
source ./stop.sh
echo Starting application
source ./startup.sh

4、脚本授权

chmod +x startup.sh
上一篇:Xcode8 Could not build Objective-C module 'FBSDKCoreKit'


下一篇:Android TextView