Jenkins的中文用户手册 内容还是比较详细的,有入门+教程+使用手册,就是官网的速度感人 🐌
1. 直接部署
以下是官网的描述:
1.1 CentOS 8.1 + JKD11
【环境 1️⃣】阿里云服务器 CentOS 8.1 + JKD11:
[root@aliyun ~]# lsb_release -a LSB Version: :core-4.1-amd64:core-4.1-noarch Distributor ID: CentOS Description: CentOS Linux release 8.1.1911 (Core) Release: 8.1.1911 Codename: Core [root@aliyun ~]# java -version openjdk version "11" 2018-09-25 OpenJDK Runtime Environment 18.9 (build 11+28) OpenJDK 64-Bit Server VM 18.9 (build 11+28, mixed mode)
非首次启动【这里只保留WARNING信息和最终的启动信息】:
[root@aliyun ~]# java -jar /home/jenkins/jenkins.war --httpPort=8081 WARNING: An illegal reflective access operation has occurred WARNING: Illegal reflective access by com.google.inject.internal.cglib.core.$ReflectUtils$2 (file:/root/.jenkins/war/WEB-INF/lib/guice-4.0.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain) WARNING: Please consider reporting this to the maintainers of com.google.inject.internal.cglib.core.$ReflectUtils$2 WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations WARNING: All illegal access operations will be denied in a future release 2021-11-05 01:23:09.503+0000 [id=22] INFO hudson.WebAppMain$3#run: Jenkins is fully up and running
Web端登录,端口默认就是8080,用--httpPort设置的是8081【由于之前登录过,所以开始界面与首次登录不一样】:
1.2 CentOS 7.9 + JKD1.8
【环境 2️⃣】腾讯云服务器 CentOS 7.9 + JKD1.8:
[root@tcloud ~]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) [root@tcloud ~]# java -version java version "1.8.0_251" Java(TM) SE Runtime Environment (build 1.8.0_251-b08) Java HotSpot(TM) 64-Bit Server VM (build 25.251-b08, mixed mode)
首次启动,这里删除了不必要的日志信息【首次启动会打印账号与密码】:
[root@tcloud ~]# java -jar /home/jenkins/jenkins.war --httpPort=8080 Running from: /home/jenkins/jenkins.war webroot: $user.home/.jenkins ************************************************************* Jenkins initial setup is required. An admin user has been created and a password generated. Please use the following password to proceed to installation: b666c688847e4f9e93a1a12276e713f0 This may also be found at: /root/.jenkins/secrets/initialAdminPassword *************************************************************
Web端登录,端口默认就是8080,我用--httpPort设置的也是8080【主要是部署这里不再贴出登录成功页面了】:
在Java环境下直接部署还是很容易的。
2. Tomcat的Web端部署
2.1 Apache Tomcat/10.0.12
Tomcat 的部署可以查看《最新版Tomcat部署》,Manager App 页面报错可以查看《Web端 403 Access Denied 最终解决方法》 最新版 Apache Tomcat/10.0.12 是部署阿里云上的,Jenkins.war 我已经放到服务器上了,页面部署如下:
部署报错【失败 - 上下文路径[/jenkins]下,应用程序无法启动】
阿里云环境直接部署时没有问题,无法启动说明跟Tomcat有关。
2.2 Apache Tomcat/8.5.72
我在腾讯云部署了 Tomcat/8.5.72 版本,页面部署如下【跟 Tomcat/10.0.12 稍有不同】:
部署成功后:
Jenkins 的默认端口号是8080,部署 Tomcat 时我将 Tomcat 的端口号修改为 8088,此时运行 Jenkins 的端口号是 8088 且路径是我们配置的 Context Path (required)
,访问的完整路径是 tcloud:8088/jenkins/ 验证如下:
至此,Tomcat 的 Web 端部署成功。