5月 242019
官方Yum仓库地址
https://pkg.jenkins.io/redhat-stable/
安装Jenkin LTS版本的Yum仓库源
[root@iZj6cehstgjoj3qav88fidZ ~]# wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo --2019-06-12 18:27:21-- https://pkg.jenkins.io/redhat-stable/jenkins.repo Resolving pkg.jenkins.io (pkg.jenkins.io)... 52.202.51.185 Connecting to pkg.jenkins.io (pkg.jenkins.io)|52.202.51.185|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 85 Saving to: ‘/etc/yum.repos.d/jenkins.repo’ 100%[=======================================================================================================================================================>] 85 --.-K/s in 0s 2019-06-12 18:27:22 (19.3 MB/s) - ‘/etc/yum.repos.d/jenkins.repo’ saved [85/85] [root@iZj6cehstgjoj3qav88fidZ ~]# rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key [root@iZj6cehstgjoj3qav88fidZ ~]# 安装OpenJDK环境并查看版本信息
[root@iZj6cehstgjoj3qav88fidZ ~]# yum install java-1.8.0-openjdk [root@iZj6cehstgjoj3qav88fidZ ~]# java -version openjdk version "1.8.0_212" OpenJDK Runtime Environment (build 1.8.0_212-b04) OpenJDK 64-Bit Server VM (build 25.212-b04, mixed mode) [root@iZj6cehstgjoj3qav88fidZ ~]#
使用Yum源安装Jenkins服务
[root@iZj6cehstgjoj3qav88fidZ ~]# yum install jenkins
查看安装路径
[root@iZj6cehstgjoj3qav88fidZ ~]# rpm -lq jenkins /etc/init.d/jenkins /etc/logrotate.d/jenkins /etc/sysconfig/jenkins /usr/lib/jenkins /usr/lib/jenkins/jenkins.war /usr/sbin/rcjenkins /var/cache/jenkins /var/lib/jenkins /var/log/jenkins [root@iZj6cehstgjoj3qav88fidZ ~]#
查看Jenkins服务注册信息
[root@iZj6cehstgjoj3qav88fidZ ~]# chkconfig --list jenkins Note: This output shows SysV services only and does not include native systemd services. SysV configuration data might be overridden by native systemd configuration. If you want to list systemd services use 'systemctl list-unit-files'. To see services enabled on particular target use 'systemctl list-dependencies [target]'. jenkins 0:off 1:off 2:on 3:on 4:on 5:on 6:off [root@iZj6cehstgjoj3qav88fidZ ~]#
启动服务
[root@iZj6cehstgjoj3qav88fidZ ~]# service jenkins start Starting jenkins (via systemctl): [ OK ] [root@iZj6cehstgjoj3qav88fidZ ~]#
查看监听
使用浏览器访问
查看初始密码
[root@iZj6cehstgjoj3qav88fidZ ~]# cat /var/lib/jenkins/secrets/initialAdminPassword 5228940ac30a481d97a4efbabe4147a3 [root@iZj6cehstgjoj3qav88fidZ ~]#
安装推荐的插件
插件安装过程
创建第一个管理员用户
实例配置
安装完成
控制台首页