Springboot项目 linux简单的启动、停止脚本 sh

  1. 启动脚本
#!/bin/bash
echo  "xxxxxx  启动开始............."

nohup java -jar  xxxxxx.jar  --spring.profiles.active=prd >/dev/null 2>&1&

echo  "xxxxxx  启动成功............."
  1. 停止脚本
#!/bin/bash

echo "xxxxxx    停止开始......."

ID=`ps -ef | grep "xxxxxx.jar" | grep -v "grep" | awk '{print $2}'`

echo $ID

for id in $ID
do

kill -9 $id

echo "killed $id"

done

sleep 5s

echo "xxxxxx    停止成功......."

你可能感兴趣的:(Springboot项目 linux简单的启动、停止脚本 sh)