Jenkins执行远程服务器Shell脚本启动SpringBoot项目

Jenkins执行远程服务器Shell脚本启动SpringBoot项目中的坑,这里不作具体的部署,只填坑。

#!/bin/bash
pid=`ps -ef | grep xxx.jar|grep -v grep|awk '{print $2}'`
if [ -n "$pid" ]
then
kill -9 $pid
echo "[admin] Killed"
fi
# 需要添加下行  否则 需要使用Java全路径执行Java命令
source /etc/profile
cd /var/lib/jenkins/workspace/platform-server-prod/platform-services/platform-admin-service/target
nohup java -jar xxx.jar > /usr/local/project-jar/server/platform-admin-service.log 2>&1 &
echo "[xxx] Start successful"

 

你可能感兴趣的:(服务器,CentOS)