1、JDK安装
2、Maven安装
3、Git安装
4、jenkins安装
以上软件安装成功后进入jenkins进行相关配置。
如果需要通过SSH进行远程发布项目,jenkins需要安装 Publish Over SSH 插件
通过whereis git查找git的安装地址
项目的配置:
mvn clean package -Dmaven.test.skip=true echo $spring_profile $jar_path $jar_name cd /opt/shell/ ./stop.sh $jar_name echo "Execute shell Finish" ./startup.sh $spring_profile $jar_path $jar_name $project_name
#!/bin/bash jar_name=${ 1 } echo "Stopping" ${jar_name} pid= `ps -ef | grep ${jar_name} | grep -v grep | awk '{print $2}'` if [ -n "$pid" ] then echo "kill -9 的pid:" $pid kill - 9 $pid fi
#!/bin/bash spring_profile=${ 1 } jar_path=${ 2 } jar_name=${ 3 } project_name=${ 4 } cd ${jar_path}/${project_name}/target/ echo ${jar_path}/${project_name}/target/ echo nohup java -jar ${jar_name} & BUILD_ID=dontKillMe nohup java -jar ${jar_name} --spring.profiles.active=${spring_profile} &
到此这篇关于使用jenkins部署springboot项目的方法步骤的文章就介绍到这了,更多相关jenkins部署springboot内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!