Jenkins 项目构建平台
引言
Jenkins是一个开源的、提供友好操作界面的持续集成(CI)工具,主要用于持续、自动的构建/测试软件项目、监控外部任务的运行。Jenkins 用 Java 语言编写,可在 Tomcat 等流行的 servlet 容器中运行,也可独立运行。
安装
安装 java
yum install java
安装 Jenkins
wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
yum install jenkins
启动 Jenkins
systemctl start jenkins
查看 Jenkins 服务状态
systemctl status jenkins
验证
访问 Jenkins http://127.0.0.1:8080/
,正常访问,即安装成功。