linux上部署springboot应用的脚本
#!/bin/bash
#getProcessId then kill
pids=$(ps -ef | grep flashsale| awk '{print $2}')
for pid in $pids
do
echo $pid
kill -9 $pid
done
#start project
nohup java -jar /developer/flashsale.jar &
需要注意的点
注意上述脚本的名字一定不能和需要kill的进程名字相同,否则该脚本会自杀掉,导致后续的脚本(启动项目)不执行