jenkins git公有仓库与私有仓库发布代码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jenkins git公有仓库与私有仓库发布代码相关的知识,希望对你有一定的参考价值。
1 发布php代码
- jenkins已经搭建完成,现在开始来做一个php发布代码的任务
- 在发布php代码时先看看是否有两个插件
在系统管理-管理插件- 已安装插件- 检查是否有“Git plugin”和“Publish Over SSH”两个插件,如果没有,则需点击“可选插件”,找到它并安装 [[email protected] jenkins]# systemctl restart jenkins //重启服务
- 需要生成一对密钥对用来登录远程机器(远程机器即是发布php代码的机器)
[[email protected] ~]# cd /root/.ssh/ [[email protected] .ssh]# ls aaa authorized_keys boy.pub id_rsa jump known_hosts lf1.pub aaa.pub boy config id_rsa.pub jump.pub lf1 //我之前有生成过密钥对在这我可以拿来直接用,你也可以根据自己的需求来重新生成
- 之后在设置jenkins
系统管理-系统设置-Publish over SSH 找到这一项,添加之前生成的密钥对的私钥即可 之后在将公钥放在想要发布php代码的机器(简称远程机器)我这边放在了[[email protected] ~]# cat .ssh/authorized_keys 这个机器上面 [[email protected] ~]# ssh 192.168.212.10 测试可以登录到远程的机器
![mark](http://oqz6pu8vi.bkt.clouddn.com/blog/20171120/163348636.png?imageslim)
SSH Server,name自定义,Hostname填写线上web服务器的ip,Username填写root,Remote Directory填写/(根)
如果是多台web server,继续点击“增加”,重复以上操作
- 创建新的任务
Repository URL”填写你项目的git地址,如果是公共项目可以不设置下面的参数,直接填写一个git地址即可,若是私有项目(-none),需要填写认证信息,比如可以选择 “SSH Username whith private key”,然后设置Username以及private key
“Branches to build” 默认为*/master,意思是发布的分支为master,保持默认
“构建触发器”和“构建环境”留空
- “构建”,选择 “Send files or execute commands over SSH”
Remove prefix可以指定截掉的前缀目录,这里留空即可,Remote directory指定远程服务器上代码存放路径,比如/data/wwwroot/www.aaa.com,Exec command为文件传输完成后要执行的命令,比如可以是更改文件权限的命令,设置完成后点击 “Add Transfer Set”,如果还有另外的机器,可以点击 “Add Server”重复以上操作
- 开始发布代码
- 查看发布的结果
[[email protected] ~]# ls /tmp/jenkins_test/ D11Z D13Z D15Z D18Z D20Z D22Z README.md D12Z D14Z D17Z D19Z D21Z LICENSE //查看已经发布成功
这里需要注意下如果是在git上重新更新了一下文件只需要在点下“立即构建”就会更新在git上更新的项目的内容
(如上我们用的是git的公共的仓库,可是我有一个私有的仓库应该怎么做呢?
- 需求:需要将discuz的代码发布到客户机上(chy这台机器上)。
在这我们有三台机器:
chy(192.168.212.10)--这台是最后的客户机查看discuz发布代码用的机器
chy02(192.168.212.12)--这台是搭建的git的私有仓库
chy01(192.168.212.11)--这台是要将discuz代码上传到私有仓库的一台机器,我这边需要上传到私有仓库然后jenkins用私有仓库的地址发布
如上的三台机器都是centos7
git的私有仓库192.168.212.12 chy02(快速搭建)
[[email protected] ~]# yum install -y git [[email protected] ~]# useradd -s /usr/bin/git-shell git [[email protected] ~]# cd /home/git/ [[email protected] git]# mkdir .ssh [[email protected] git]# touch .ssh/authorized_keys [[email protected] git]# chmod 600 .ssh/authorized_keys [[email protected] git]# chown -R git:git .ssh [[email protected] git]# vi .ssh/authorized_keys 放入公钥,保证客户机可以访问我们的git私有仓库的服务端 [[email protected] ~]# ssh [email protected] # cat /etc/motd fatal: Interactive git shell is not enabled. hint: ~/git-shell-commands should exist and have read and execute access. Connection to 192.168.212.12 closed.
到git的客户机里开始将discuz代码上传到我们的私有仓库里
[[email protected] ~]# cd /tmp You have new mail in /var/spool/mail/root [[email protected] tmp]# git clone [email protected]:/data/gitroot/sample.git Cloning into ‘sample‘... warning: You appear to have cloned an empty repository. [[email protected] tmp]# cd sample/ [[email protected] sample]# ls -la total 12 drwxr-xr-x 3 root root 4096 Nov 22 00:14 . drwxrwxrwt. 15 root root 4096 Nov 22 00:14 .. drwxr-xr-x 7 root root 4096 Nov 22 00:14 .git [[email protected] sample]# vim discuzz.html [[email protected] sample]# git add discz.html [[email protected] sample]# git commit -m "daima" [master d22de14] daima 1 file changed, 470 insertions(+) create mode 100644 discz.html [[email protected] sample]# git push Counting objects: 3, done. Compressing objects: 100% (2/2), done. Writing objects: 100% (2/2), 252 bytes | 0 bytes/s, done. Total 2 (delta 0), reused 0 (delta 0) To [email protected]:/data/gitroot/sample.git a2ee2f6..d22de14 master -> master 如上是上传discuz的代码
git私有仓库查看是否上传
[[email protected] sample.git]# git log --pretty=oneline b081942e4a9eed04ffe34e7b2a6796270f1fcc69 discuzz 代码
现在需要在jenkins里下发discuz的代码
- 如下是新建一个任务
- 创建git私有仓库的信息
- 如下的就与之前的公有仓库的操作是一致的,这里就不细说了
-最后就开始构建
- 在客户机上查看是否有构建的任务
[[email protected] ~]# cd /tmp/jenkins_test/ [[email protected] jenkins_test]# ls 1.txt D12Z D14Z D17Z D19Z D21Z discuzz.html LICENSE 习题答案.txt D11Z D13Z D15Z D18Z D20Z D22Z discz.html README.md 查看到已有discuzz
- 这里需要再次注意下,如果是自己搭建的私有仓库一定要记得每台机器上要有相应的密钥。切记切记。
当然后期只要是构建成功还需要发一封邮件提醒,来提升工作效率!!
以上是关于jenkins git公有仓库与私有仓库发布代码的主要内容,如果未能解决你的问题,请参考以下文章
CI/CD持续集成与持续交付(上)-------- git,gitee远程共有仓库和gitlab私有仓库,jenkins
带有 git 私有仓库的 Jenkins kubernetes 插件