从零开始搭建JENKINS+GITHUB持续集成环境【多图】

POST这篇文章是讲解从无到有的JENKINS+GITHUB持续集成环境的搭建。JENKINS和其他平台的结合搭建,比如码云啥的配合,操作过程大同小异。下面,我们STEP BY STEP地讲解一下,如有不合理的地方,还请指出☞

购买一个服务器

为什么要购买服务器呢?

因为如果你本地搭建jenkins环境之后,跟github联通不了--需要ip来设置githubwebhooks的。当然,有什么其他操作可以联通github的,还望指出:)

注意:如果你在本地运行jenkins,那么你的webhooks可能是https://localhost:8080/github-webhook/,这不会起作用的,因为webhooks只在网络中起作用。你可以参考文章Adding a GitHub Webhook in Your Jenkins Pipeline来了解一下。

这里,我购买了阿里云的低配服务器,操作系统是centos7。购买好服务器之后,我简单通过NGINX来代理,展示一个简单的静态页面。当然,这里并不是我们的重点,所以就不展开来说了。

需要注意的是,你要配置安全组,才能看到静态的站点。我自己配置如图:

image

在上传资源之后,这时你打开阿里云上相关的ip地址,如果你没有看到期望的页面,请检查一下安全组的设置。

准备一款终端

为什么要准备呢?

我们不可能总是登录自己的阿里云账号,然后切换到自己的服务器那里连接它,然后再屁颠屁颠地操作程序吧~

如果你喜欢,那你就保留那种操作习惯吧。只能说你时间真多~

这里,自己在mac prodell电脑上都安装了SecureCRT【一款支持SSH(SSH1和SSH2)的终端仿真程序】,远程控制自己的服务器。我觉得挺好用的,喜欢!❤

搭建JENKINS环境

服务器和远程控制的仿真程序都已经准备完成了,接下来,我们在服务器上面搭建所需的环境。

安装java环境

先在服务器上安装java环境,可参考这篇文章操作。安装好java sdk后,配置好环境。

之后,你可以通过java -version等命令查看或验证,下面是自己服务器上java的安装信息和相关路径的设置:

image

1、路径/usr/lib/java是本机下载好jdk-8u231-linux-x64.tar.gz压缩文件上传到服务器的存放文件路径,解压后可以将其压缩包删除。

2、/usr/java/java8是自己在服务器上解压文件路径。

安装jenkins

按照下面的命令行进行操作:

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="bash" cid="n27" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">$ yum install yum-fastestmirror -y #安装自动选择最快源的插件

添加Jenkins源:

sudo wget -O /etc/yum.repos.d/jenkins.repo http://jenkins-ci.org/redhat/jenkins.repo sudo rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key
$ yum install jenkins #安装jenkins</pre>

安装完毕后,你就可以启动jenkins了:

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="bash" cid="n29" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">sudo service jenkins start</pre>

当然,启动之后,它可能出现下面的问题:

image

图上表明是你java的引入路径有问题了~

上图意思是:启动程序找不到java

那么,你需要执行vim /etc/init.d/jenkins命令进入文件,修改其路径就行了,如下:

image

备注:linux 使用find .|xargs grep -ri "要查找的字符串"命令查找包含某字符串的文件

顺利启动后,控制台有个success的提醒。这时,你在浏览器上输入http://your server ip:8080就可以打开了,呈现信息如下图。jenkins的默认端口号是8080,当然,你可以执行vim /etc/sysconfig/jenkins进入文件修改端口号等。

image

同上,如果网页不能打开,请查看下自己在阿里云那里有没有设置好安全组了~

嗯,接下来就是一步步解锁Jenkins了。

Jenkins的使用

我们能在自己的服务上面成功安装并运行了jenkins,下面我们来升级打怪,使用下jenkins

解锁

image

根据提示,我们执行cat /var/lib/jenkins/secrets/initialAdminPassword命令得到Administrator password,然后点击继续按钮,往下走。

image

我们选择安装推荐的插件,等待安装完毕。如果有安装失败的插件可以跳过,之后可以根据需求安装。【安装过程请保持网络的顺畅】

image

初始化账号和密码

你可以创建自己的管理员用户信息,当然也可以点击使用admin账号继续链接跳过。

image

设置完成之后,进入界面:

image

关联 github

我们的目的是要将github和jenkins结合起来,进行自动化发布。现在来关联下github。以我自己的github账号为例,进行配置。

生成 secret text

secret textgithub上被称为token

进入github --> Settings --> Developer settings --> Personal access tokens -> Generate new token

image

之后生成一个新的token:

image

填写好toke的名称,勾选完上面的两个选项,之后按Generate token按钮进行确认:

image

自己先保存此token,如果丢失,之后再也无法找到这个token了。

设置 github webhooks

接着,选择自己的一个github项目,这里我拿自己的博客仓库https://github.com/reng99/blogs作为例子:

进入github上指定的项目 --> Settings --> Webhooks --> Add Webhook --> 输入刚刚部署jenkins的服务器的IP

image

Payload URL的内容就是http://your ip:8080/github-webhook/

jenkins的github配置

正确安装之后,接着,我们来配置Github Plugin,如果你还没安装github plugin,那就进入系统管理 --> 插件管理 --> 可选插件进行安装。(新版本的Jenkins)中已经帮你做了这一步。

这里默认已经安装了github plugin,下面来配置~

配置GitHub Plugin

系统管理 --> 系统设置 --> GitHub --> 添加Github服务器

如下图所示:

image

API URL 输入 https://api.github.com,凭证Credentials点击添加,类型选择Secret Text,具体如下图所示:

image

点击添加按钮后,下拉选择凭证,选择你新增的那个凭证,然后点击连接测试按钮,提示Credentials verified for user xxx, rate limit: xxx信息,则表明有效。

image

创建一个freestyle任务

进入主页 --> 新建任务

image

General设置

填写GitHub project URL,也就是你的主页https://github.com/your_name/your_repo_name,我这里使用我的博客仓库进行尝试https://github.com/reng99/blogs

image

配置源码管理

勾选Git选项之后,就会出现相关的填写项,根据下图的指引来填写就行了~

image
  1. 填写项目的git地址, eg: https://github.com/your_name/your_repo_name.git

  2. 添加github用户和密码(要是一个有写权限的github账号,此步骤见下图)

  3. 选择githubweb源码库浏览器,并填上你的项目URL,这样每次构建都会生成对应的changes,可直接链到github上看变更详情

点击添加增加Credentials

image

构建触发器

勾选GitHub hook trigger for GITScm polling即可~

image

构建环境配置

勾选Use secret test(s) or file(s)即可~

image

设置绑定

选择绑定 --> 点击新增按钮 --> 选择Secret text --> 下拉选择你之前设置的secret token --> 之后应用

image

设置构建

我这里基本没怎么操作,你可以根据自己的需求来编写构建的脚本了。

image

构建后操作

image

你可以根据需求更改构建后的操作,我这里都默认。

验证构建

上面的工作都完成之后,修改下我的blogs仓库的代码,提交后,刷新下自己的jenkins地址,出现下面的现象说明成功了~(ps: 第一次构建的时候比较耗时,请耐心等待,时不时刷新下页面了)

image
image

错误处理

在进行集成的过程中,你可能会遇到下面的这些问题~

重新安插插件

在进行初始化的时候,一些插件我们可能会安装失败。不过,不要在意,你可以进来之后再针对需要的插件进行安装。

image
image
image

安装成功之后,进入/restart/路径对jenkins重启。

image

再次进入就正常了,美滋滋~

image

git command错误

image

进入服务器查看是否安装了git

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="bash" cid="n143" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"># git version</pre>

没有git,此时需要安装git。

<pre spellcheck="false" class="md-fences md-end-block ty-contain-cm modeLoaded" lang="bash" cid="n145" mdtype="fences" style="box-sizing: border-box; overflow: visible; font-family: var(--monospace); font-size: 0.9em; display: block; break-inside: avoid; text-align: left; white-space: normal; background-image: inherit; background-position: inherit; background-size: inherit; background-repeat: inherit; background-attachment: inherit; background-origin: inherit; background-clip: inherit; background-color: rgb(248, 248, 248); position: relative !important; border: 1px solid rgb(231, 234, 237); border-radius: 3px; padding: 8px 4px 6px; margin-bottom: 15px; margin-top: 15px; width: inherit; color: rgb(51, 51, 51); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"># yum install git</pre>

构建触发器找不到github选项

在构建触发器的时候,找不到选项Build when a change is pushed to Github

那是因为新版的jenkins将其修改为GitHub hook trigger for GITScm polling了。

后话

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,456评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,370评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,337评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,583评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,596评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,572评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,936评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,595评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,850评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,601评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,685评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,371评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,951评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,934评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,167评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,636评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,411评论 2 342

推荐阅读更多精彩内容