springboot以jar包方式启动、关闭、重启脚本
启动
编写启动脚本startup.sh
#!/bin/bash echo Starting application
nohup java -jar springboot_helloword-0.0.1-SNAPSHOT.jar &
授权
chmod +x startup.sh
关闭
编写关闭脚本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
授权
chmod +x stop.sh
重启
编写重启脚本restart.sh
#!/bin/bash echo Stopping application source ./stop.sh echo Starting application source ./startup.sh
授权
chmod +x restart.sh