apt install fontconfig openjdk-11-jre
wget https://mirrors.tuna.tsinghua.edu.cn/jenkins/war/2.429/jenkins.war
deb包安装
wget https://mirrors.tuna.tsinghua.edu.cn/jenkins/debian-stable/jenkins_2.414.3_all.deb
dpkg -i jenkins_2.414.3_all.deb
访问 http://192.168.1.51:8080/
添加凭证,后面任务添加job要用到
这个是gitlab创建的用户
添加git仓库
http://192.168.1.50/devops/spring-boot-helloWorld.git/
报错:ERROR: Couldn’t find any revision to build. Verify the repository and branch configuration for this job.
Finished: FAILURE
分支填写不正确
编译
打包
构建服务器
构建工具
安装maven环境
安装mave构建插件
作业:
1、freestyle完成helloworldJSP应用的构建和部署;
(1)shell构建
(2)调用顶层maven目标
(3)使用maven job
2、部署到单个tomcat环境;部署多个tomcat环境;
3、扩展:使用ansible插件,调用ansible完成应用部署;
通过jenkins中mave编译
jenkins中全局配置工具添加git
复制项目并修改为jgitapache
添加mvn命令
编译成功
项目
使用luohuiwen用户新建项目
导入
jenkins新建job并配置
通过jenkins部署应用到tomcat
部署jenkins
安装docker和docker-compose
克隆仓库并编译
152 git clone https://github.com/iKubernetes/learning-jenkins-cicd.git
153 ls
154 cd learning-jenkins-cicd/
155 ls
156 cd 04-tomcat-with-manager/
docker-comose build
docker-comose up
访问tomcat
http://192.168.1.51:8088/manager
安装插件
添加job并构建
生成的war包名字:[INFO] Building war: /var/lib/jenkins/workspace/Helloworld-jsp/target/helloworldJSP-v0.0.1.war
添加构建后操作
构建成功后
访问tomcat,可以访问到应用
发布到多个tomcat
启动3个tomcat
cd /learning-jenkins-cicd/04-tomcat-with-manager
docker-compose -f docker-compose-multi-instances.yaml build
239 docker-compose -f docker-compose-multi-instances.yaml up -d
240 ls
241 vi docker-compose-multi-instances.yaml
242 docker-compose -f docker-compose-multi-instances.yaml up -d
添加多个tomcat配置
验证8089 8090 8091端口成功
maven修改阿里源配置
添加阿里源配置
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
清理缓存
root@ubuntu20:/var/lib/jenkins/.m2/repository# rm -rf ./*