GitLab安裝及使用


 

       GitLab是一個利用 Ruby on Rails 開發的開源應用程序,實現一個自托管的Git項目倉庫,可通過Web界面進行訪問公開的或者私人項目。

  GitLab擁有與Github類似的功能,能夠瀏覽源代碼,管理缺陷和注釋。可以管理團隊對倉庫的訪問,它非常易於瀏覽提交過的版本並提供一個文件歷史庫。它還提供一個代碼片段收集功能可以輕松實現代碼復用,便於日后有需要的時候進行查找。

 

 

1. GitLab安裝與配置

1.1. 基礎環境准備

1 [root@mini04 ~]# yum install -y curl policycoreutils openssh-server openssh-clients postfix
2 ………………
3 [root@mini04 ~]# systemctl start postfix

 

1.2. 配置yum源

  注:由於網絡問題,國內用戶,建議使用清華大學的鏡像源進行安裝:

1 [root@mini04 ~]# vim /etc/yum.repos.d/gitlab-ce.repo
2 [gitlab-ce]
3 name=gitlab-ce
4 baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
5 repo_gpgcheck=0
6 gpgcheck=0
7 enabled=1
8 gpgkey=https://packages.gitlab.com/gpg.key

 

1.3. 更新本地yum緩存

1 [root@mini04 ~]# yum makecache
2 ………………

 

1.4. 安裝GitLab

1 [root@mini04 ~]# yum install -y gitlab-ce
2 ………………

 

1.5. 配置修改

1 [root@mini04 ~]# vim /etc/gitlab/gitlab.rb 
2 ………………
3 ## GitLab URL
4 ##! URL on which GitLab will be reachable.
5 ##! For more details on configuring external_url see:
6 ##! https://docs.gitlab.com/omnibus/settings/configuration.html#configuring-the-external-url-for-gitlab
7 # external_url 'http://gitlab.example.com'
8 # 能夠解析
9 external_url 'http://mini04'

 

1.6. 配置並啟動gitlab-ce

1 [root@mini04 ~]# gitlab-ctl reconfigure
2 ………………

 

1.7. 查看gitlab狀態

 1 [root@mini04 ~]# gitlab-ctl status  
 2 run: alertmanager: (pid 4075) 27s; run: log: (pid 4180) 25s
 3 run: gitaly: (pid 4004) 28s; run: log: (pid 4016) 28s
 4 run: gitlab-monitor: (pid 4025) 28s; run: log: (pid 4045) 27s
 5 run: gitlab-workhorse: (pid 3983) 28s; run: log: (pid 4049) 27s
 6 run: logrotate: (pid 3529) 90s; run: log: (pid 4051) 27s
 7 run: nginx: (pid 3506) 96s; run: log: (pid 4050) 27s
 8 run: node-exporter: (pid 3710) 78s; run: log: (pid 4017) 28s
 9 run: postgres-exporter: (pid 4096) 26s; run: log: (pid 4196) 25s
10 run: postgresql: (pid 3229) 140s; run: log: (pid 3972) 29s
11 run: prometheus: (pid 4052) 27s; run: log: (pid 4070) 27s
12 run: redis: (pid 3154) 146s; run: log: (pid 4021) 28s
13 run: redis-exporter: (pid 3783) 66s; run: log: (pid 4041) 27s
14 run: sidekiq: (pid 3475) 103s; run: log: (pid 3974) 29s
15 run: unicorn: (pid 3432) 110s; run: log: (pid 3973) 30s

 

1.8. GitLab常用命令

1 gitlab-ctl start    # 啟動所有 gitlab 組件;
2 gitlab-ctl stop        # 停止所有 gitlab 組件;
3 gitlab-ctl restart        # 重啟所有 gitlab 組件;
4 gitlab-ctl status        # 查看服務狀態;
5 gitlab-ctl reconfigure        # 啟動服務;
6 vim /etc/gitlab/gitlab.rb        # 修改默認的配置文件;
7 gitlab-ctl tail        # 查看日志;
8 gitlab-rake gitlab:check SANITIZE=true --trace    # 檢查gitlab;

 

 

2. GitLab使用

2.1. 首次登陸

1 http://10.0.0.14

 

       首次登陸會要求修改root用戶的密碼。

 

       之后對到登陸頁面,使用root用戶登錄即可。

 

2.2. 添加SSH Key信息

 1 [root@mini04 ~]# ssh-keygen -t rsa
 2 Generating public/private rsa key pair.
 3 Enter file in which to save the key (/root/.ssh/id_rsa): 
 4 Created directory '/root/.ssh'.
 5 Enter passphrase (empty for no passphrase): 
 6 Enter same passphrase again: 
 7 Your identification has been saved in /root/.ssh/id_rsa.
 8 Your public key has been saved in /root/.ssh/id_rsa.pub.
 9 The key fingerprint is:
10 SHA256:ACvHut11cMKDaL1QzsrL3x23OyUl9cd7+kLfFW30cLM root@mini04
11 The key's randomart image is:
12 +---[RSA 2048]----+
13 |    . .          |
14 |   . O o      o.o|
15 |  . B * = .  . *=|
16 |   * o o =  . .EB|
17 |  . o . S .  o .+|
18 |   + o . .  . o.o|
19 |  . + .   . .+ o+|
20 |     . . . o..o o|
21 |      . . . oo o.|
22 +----[SHA256]-----+
23 [root@mini04 ~]# ll -d .ssh/
24 drwx------ 2 root root 38 Sep 17 22:26 .ssh/
25 [root@mini04 ~]# cd .ssh/
26 [root@mini04 .ssh]# ll
27 total 8
28 -rw------- 1 root root 1679 Sep 17 22:26 id_rsa
29 -rw-r--r-- 1 root root  393 Sep 17 22:26 id_rsa.pub
30 [root@mini04 .ssh]# cat id_rsa.pub 
31 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCpqkXHf8f7UQSPVH0E40pydotJChFQliRSSmHQezVGh91AB++YfUeGPHHDWDgLCjefxCc+KnJrqJPrUR02K1OwJoC9X4K2x0+gJekEpfs9Yb7Y5hE5XiGz4Z6X+ybN015u3G9czVhV5XAT2M4q+couVgaPpf2npfqv9eqhTuh1W0336sKIvAj1N8iXzfSDbdaERCP2NscnTOrgmHZ8aVMvyyruslvQoNjgQN06/91R48aSqwD++kLOTChGo7qNC10H315UR7cX2MKME9ssuyf77azFLYYdBrALR//YjOoid/jkTHkCLO1ZvHdqakWK7YAHOwV/RocTcm71hqq3mLfz root@mini04

 

 

 

 

       GitLab的頁面使用,請自行百度參考。git的命令行使用,可參考前面的幾篇博文。

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM