4-14 Gitlab部署

14.1   gitlab  概述

14.2    搭建centos 7   部署汉化版 Gitlab 

14.3     安装Git 客户端使用Gitlab 

14.4    实战:使用Gitlab  管理网站源代码

14.1.1  Gitlab   概述

Gitlab 概述

是一个利用Ruby  on   Rails   开发的开源应用程序,实现一个自托管的Git  项目仓库

Ruby  on  Rails  是一个可以使你开发,部署,维护,web应用程序变得简单的框架



安装依赖库

使用本地yum  安装

[root@xueshen65 ~]# yum install curl policycoreutils openssh-server openssh-clients postfix -y

无须任何处理

[root@xueshen65 ~]# systemctl    start  postfix 

[root@xueshen65 ~]# iptables  -F

[root@xueshen65 ~]# systemctl    enable  postfix 

[root@xueshen65 ~]# systemctl  stop firewalld

上传gitlan-ce  软件包到linux服务器上

安装  [root@xueshen65 ~]# rpm -ivh gitlab-ce-10.2.3-ce.0.el7.x86_64.rpm

开始初始化

[root@xueshen65 ~]# gitlab-ctl reconfigure

查看状态

[root@xueshen65 ~]# gitlab-ctl status

run: gitaly: (pid 13428) 180s; run: log: (pid 12875) 249s

run: gitlab-monitor: (pid 13445) 179s; run: log: (pid 13029) 232s

run: gitlab-workhorse: (pid 13406) 181s; run: log: (pid 12696) 263s

run: logrotate: (pid 12809) 255s; run: log: (pid 12808) 255s

run: nginx: (pid 12761) 261s; run: log: (pid 12760) 261s

run: node-exporter: (pid 12960) 243s; run: log: (pid 12959) 243s

run: postgres-exporter: (pid 13477) 179s; run: log: (pid 13273) 208s

run: postgresql: (pid 12248) 362s; run: log: (pid 12247) 362s

run: prometheus: (pid 13462) 179s; run: log: (pid 13200) 214s

run: redis: (pid 12125) 374s; run: log: (pid 12124) 374s

run: redis-exporter: (pid 13146) 220s; run: log: (pid 13145) 220s

run: sidekiq: (pid 12635) 269s; run: log: (pid 12634) 269s

run: unicorn: (pid 12567) 275s; run: log: (pid 12566) 275s

查看端口

[root@xueshen65 ~]# netstat -antup | grep 80

tcp        0      0 127.0.0.1:8080          0.0.0.0:*              LISTEN      12589/unicorn maste

tcp        0      0 0.0.0.0:80              0.0.0.0:*              LISTEN      12761/nginx: master

tcp        0      0 0.0.0.0:8060            0.0.0.0:*              LISTEN      12761/nginx: master

tcp        0      0 192.168.43.66:22        192.168.43.80:3128      ESTABLISHED 10991/sshd: root@pt

tcp        0      0 127.0.0.1:8080          127.0.0.1:46224        TIME_WAIT  -                 

tcp        0      0 192.168.43.66:22        192.168.43.80:4009      ESTABLISHED 12429/sshd: root@pt

tcp        0      0 127.0.0.1:8080          127.0.0.1:46200        TIME_WAIT  -                 

tcp        0      0 127.0.0.1:8080          127.0.0.1:46248        TIME_WAIT  -                 

tcp        0      0 127.0.0.1:8080          127.0.0.1:46272        TIME_WAIT  -                 

udp6      0      0 ::1:48089              ::1:48089              ESTABLISHED 12248/postgres

到此Gitlab  已经安装成功

默认使用nginx  作为web服务器




14.2.4   管理Gitlab   

关闭Gitlab  :  Gitlab-ctl   stop

开启Gitlab  :  Gitlab-ctl   start

重启Gitlab  :  Gitlab-ctl   restart

安装成功

查看安装位置

rpm -pql gitlab-ce-10.2.3-ce.0.el7.x86_64.rpm

[root@xueshen65 ~]# ls /opt/gitlab/

bin  dependency_licenses.json  embedded  etc  init

汉化之前 要停止服务

[root@xueshen65 ~]# gitlab-ctl stop

ok: down: gitaly: 0s, normally up

ok: down: gitlab-monitor: 1s, normally up

ok: down: gitlab-workhorse: 0s, normally up

ok: down: logrotate: 1s, normally up

打上补丁 

对比服务

gitlab      git diff v10.2.3 v10.2.3-zh > ../10.2.3-zh.diff

[root@xueshen65 gitlab]# patch -d /opt/gitlab/embedded/service/gitlab-rails/ -p1

重启服务

[root@xueshen65 ~]# gitlab-ctl restart

ok: run: gitaly: (pid 18402) 0s

ok: run: gitlab-monitor: (pid 18415) 1s

ok: run: gitlab-workhorse: (pid 18426) 0s

ok: run: logrotate: (pid 18435) 1s

ok: run: nginx: (pid 18441) 0s

ok: run: node-exporter: (pid 18449) 0s

ok: run: postgres-exporter: (pid 18455) 1s

ok: run: postgresql: (pid 18461) 0s

ok: run: prometheus: (pid 18469) 1s

ok: run: redis: (pid 18479) 0s

ok: run: redis-exporter: (pid 18518) 1s

ok: run: sidekiq: (pid 18524) 0s

ok: run: unicorn: (pid 18534) 0s












Gitlab 日常使用

一,新建项目

二   创建用户  

 三 重置用户密码

  四删除用户





14.3   安装Git  客户端使用Gitlab 

yum  install git  -y 

git clone   [email protected]/xuegodweb/xuegod-web.git 下载地址,可以从这里获得

[root@xueshen65 test]# git clone http://192.168.43.66/xuegod/xuegod-web.git

正克隆到 'xuegod-web'...

Username for 'http://192.168.43.66': root   Git  用户名

Password for 'http://[email protected]':  Git   密码 

remote: Counting objects: 3, done.

remote: Total 3 (delta 0), reused 0 (delta 0)

Unpacking objects: 100% (3/3), done.

克隆成功

14.3.2   初次运行Git  前的配置

一般在新的系统中,我们都需要先配置下自己的Git工作环境,配置工作值需要一次,以后升级还会沿用现在的配置

配置用户名和密码

[root@xueshen65 ~]# git config --global user.name "root"

[root@xueshen65 ~]# git config  --global  user.email  "[email protected]"

 [root@xueshen65 ~]# vim /root/.gitconfig



修改代码并提交

[root@xueshen65 xuegod-web]# echo "bbs.xuegod.cn" >> index.html

[root@xueshen65 xuegod-web]# git add index.html 

[root@xueshen65 xuegod-web]# git commit  -m "add bbs"

[master ee166ea] add bbs

1 file changed, 1 insertion(+), 1 deletion(-)

[root@xueshen65 xuegod-web]#

访问被拒绝

[root@xueshen65 xuegod-web]# git config --global push.default simple

[root@xueshen65 xuegod-web]# git push 

Username for 'http://localhost': miaoshun

Password for 'http://miaoshun@localhost':

fatal: unable to access 'http://localhost/xuegod/xuegod-web.git/': The requested URL returned error: 403

push成功

[root@xueshen65 xuegod-web]# git push -u origin

Username for 'http://localhost': root  root的用户名

Password for 'http://root@localhost':12345678

Counting objects: 5, done.

Writing objects: 100% (3/3), 252 bytes | 0 bytes/s, done.

Total 3 (delta 0), reused 0 (delta 0)

To http://localhost/xuegod/xuegod-web.git

  5437504..a57b571  master -> master

分支 master 设置为跟踪来自 origin 的远程分支 master。

恢复之前的版本

[root@xueshen65 xuegod-web]# git reset --hard HEAD

HEAD 现在位于 a57b571 add bbs

查看当前版本号

[root@xueshen65 xuegod-web]# git --version

git version 1.8.3.1


[root@xueshen65 xuegod-web]# git reflog    获取每次提交的ID

a57b571 HEAD@{0}: commit: add bbs

5437504 HEAD@{1}: clone: from http://localhost/xuegod/xuegod-web.git

1  工作区十九


切换来回分支

[root@xueshen65 xuegod-web]# git checkout bbs

切换到分支 'bbs'

[root@xueshen65 xuegod-web]# git branch

* bbs

  master

[root@xueshen65 xuegod-web]#

增加到服务器上

[root@xueshen65 xuegod-web]# vim a.txt

[root@xueshen65 xuegod-web]# git add  a.txt   提交到占存区中

[root@xueshen65 xuegod-web]# git commit  -m  "add add.txt"

[bbs 36269a3] add add.txt

1 file changed, 1 insertion(+)

create mode 100644 a.txt

[root@xueshen65 xuegod-web]# git  push  -u origin    bbs

Username for 'http://localhost': root 

Password for 'http://root@localhost':

Counting objects: 4, done.

Delta compression using up to 4 threads.

Compressing objects: 100% (2/2), done.

Writing objects: 100% (3/3), 270 bytes | 0 bytes/s, done.

Total 3 (delta 0), reused 0 (delta 0)

remote:

remote: To create a merge request for bbs, visit:

remote:  http://gitlab.example.com/xuegod/xuegod-web/merge_requests/new?merge_request%5Bsource_branch%5D=bbs

remote:

To http://localhost/xuegod/xuegod-web.git

* [new branch]      bbs -> bbs

分支 bbs 设置为跟踪来自 origin 的远程分支 bbs


4.14.6  搭建Jenkins   实现持续集成  

下载

wget http://pkg.jenkins.io/redhat/jenkins.repo

[root@xueshen65 yum.repos.d]# vim jenkins.repo

[jenkins]

name=Jenkins

baseurl=http://pkg.jenkins.io/redhat

gpgcheck=1

~       

2  ) 导入秘钥

rpm --import

http://pkg.jenkins.io/redhat/jenkins.io.key

3方法2   把下载好的Jenkins  rpm  包安装好

   [root@xueshen65 ~]# rpm -ivh jenkins-2.93-1.1.noarch.rpm

  80端口已经被占用所以修改配置文件中的端口号

下面的

vim /etc/sysconfig/jenkins

启动并开机启动

[root@xueshen65 ~]# ls /etc/init.d/

functions  jenkins  netconsole  network  README

[root@xueshen65 ~]# /etc/init.d/jenkins  start 

Starting jenkins (via systemctl):                          [  确定  ]

[root@xueshen65 ~]# chkconfig  jenkins  on

[root@xueshen65 ~]# chkconfig --list jenkins

注:该输出结果只显示 SysV 服务,并不包含

原生 systemd 服务。SysV 配置数据

可能被原生 systemd 配置覆盖。

      要列出 systemd 服务,请执行 'systemctl list-unit-files'。

      查看在具体 target 启用的服务请执行

      'systemctl list-dependencies [target]'。

jenkins        0:关 1:关 2:开 3:开 4:开 5:开 6:关

在配置文件的用户名处发现存放的日志

[root@xueshen65 jenkins]# vim /var/log/jenkins/jenkins.log

得出 GitLab 默认使用的是 root 用户,而 Jenkins 默认使用的是 jenkins 用户,因此也就出现日志

  而  Jenkins  的默认用户是root

  [root@xuegod63 ~]# vim /etc/sysconfig/jenkins

改:29 JENKINS_USER="jenkins"

为:29 JENKINS_USER="root"

中的权限问题了。修改 Jenkins 的默认用户为 root。

再次启动

查看端口

[root@xueshen65 jenkins]# /etc/init.d/jenkins restart

Restarting jenkins (via systemctl):                        [  确定  ]

[root@xueshen65 jenkins]# netstat    -antup | grep 198

tcp6      0      0 :::198                  :::*                    LISTEN      14394/java   

浏览器输入ip地址和端口号访问

默认用户名为admin 


查看  起始密码 

[root@xueshen65 jenkins]# cat /var/lib/jenkins/secrets/initialAdminPassword

fd6a4ae6ed314876952b38e560c99f2f




方法 2: 也可以直接把一台安装好 jenkins 揑件服务器的/var/lib/jenkins/plugins 目录下的文件

复制到新的 jenkins 中。

把准备好的揑件解压一下:

[root@xuegod63 jenkins]# tar czvf plugins.tar.gz plugins/

#cd /var/lib/jenkins/

#rm -rf /var/lib/jenkins/plugins

#tar -zxvf plugins.tar.gz #上传 plugins.tar.gz 到 linux 系统上,解压缩

#chown jenkins.jenkins ./* -R

#/etc/init.d/jenkins start

注:记得重启 jenkins,这个非常重要,因为丌重启,揑件丌会生效

到此 jenkins 安装成功。

登录 gitlab http://192.168.1.63/ 用户名: root 密码: xuegod.cn

登录 jenkins http://192.168.1.63:198/ 用户名: root 密码: 123456

总结

你可能感兴趣的:(4-14 Gitlab部署)