1.准备工作
1、JDK安装
2、Maven安装
3、Git安装
4、jenkins安装
以上软件安装成功后进入jenkins进行相关配置。
如果需要通过SSH进行远程发布项目,jenkins需要安装 Publish Over SSH 插件
2.全局配置
通过whereis git查找git的安装地址
3.全局配置完成后在进行系统配置 ,如图
4.基础配置完成以后,下面我们来新建一个项目
项目的配置:
5.shell
- 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
6.stop.sh 脚本
- #!/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
7.start.sh 脚本
- #!/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内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://blog.csdn.net/K_520_W/article/details/115875386