centos中yum方式部署Jenkins

第一步:先参考官方文档指导,了解Jenkins所需的依赖java环境,

https://mirrors.jenkins-ci.org/redhat/

powershell 复制代码
#查看是否有jdk17可安装,没有的话,则重现下载ipm
yum search java | grep -i --color jdk
wget https://download.oracle.com/java/17/latest/jdk-17_linux-x64_bin.rpm
yum -y install ./jdk-17_linux-x64_bin.rpm
java -version

wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat/jenkins.repo
rpm --import https://pkg.jenkins.io/redhat/jenkins.io-2023.key
yum install fontconfig java-17-openjdk
yum install jenkins

systemctl start jenkins
systemctl status jenkins



vim /usr/lib/systemd/system/jenkins.service  #jenkins安装目录,Jenkins配置文件
systemctl daemon-reloa
systemctl restart jenkins


maven下载包地址:
https://archive.apache.org/dist/maven/

https://mirrors.bfsu.edu.cn/apache/maven/
相关推荐
乔巴不是狸猫10 分钟前
第11周作业
linux
Bessssss1 小时前
centos权限大集合,覆盖多种权限类型,解惑权限后有“. + t s”问题!
linux·运维·centos
jwensh2 小时前
【Jenkins】Declarative和Scripted两种脚本模式有什么具体的区别
运维·前端·jenkins
silver6872 小时前
Linux 下的 GPT 和 MBR 分区表详解
linux
R-sz2 小时前
14: curl#6 - “Could not resolve host: mirrorlist.centos.org; 未知的错误“
linux·python·centos
code_abc3 小时前
Shell 脚本编程基础:变量
linux
星如雨落3 小时前
Linux shell脚本对常见图片格式批量转换为PDF文件
linux·shell
冰红茶兑滴水3 小时前
云备份项目--工具类编写
linux·c++
董健正3 小时前
centos制作离线安装包
linux·运维·centos
猫猫的小茶馆3 小时前
【数据结构】数据结构整体大纲
linux·数据结构·算法·ubuntu·嵌入式软件