经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 数据库运维 » LinuxShell » 查看文章
GitLab安装及使用
来源:cnblogs  作者:踏歌行666  时间:2018/10/8 8:58:41  对本文有异议

 

       GitLab是一个利用 Ruby on Rails 开发的开源应用程序,实现一个自托管的Git项目仓库,可通过Web界面进行访问公开的或者私人项目。

  GitLab拥有与Github类似的功能,能够浏览源代码,管理缺陷和注释。可以管理团队对仓库的访问,它非常易于浏览提交过的版本并提供一个文件历史库。它还提供一个代码片段收集功能可以轻松实现代码复用,便于日后有需要的时候进行查找。

 

 

1. GitLab安装与配置

1.1. 基础环境准备

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

 

1.2. 配置yum源

  注:由于网络问题,国内用户,建议使用清华大学的镜像源进行安装:

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

 

1.3. 更新本地yum缓存

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

 

1.4. 安装GitLab

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

 

1.5. 配置修改

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

 

1.6. 配置并启动gitlab-ce

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

 

1.7. 查看gitlab状态

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

 

1.8. GitLab常用命令

  1. 1 gitlab-ctl start # 启动所有 gitlab 组件;
  2. 2 gitlab-ctl stop # 停止所有 gitlab 组件;
  3. 3 gitlab-ctl restart # 重启所有 gitlab 组件;
  4. 4 gitlab-ctl status # 查看服务状态;
  5. 5 gitlab-ctl reconfigure # 启动服务;
  6. 6 vim /etc/gitlab/gitlab.rb # 修改默认的配置文件;
  7. 7 gitlab-ctl tail # 查看日志;
  8. 8 gitlab-rake gitlab:check SANITIZE=true --trace # 检查gitlab;

 

 

2. GitLab使用

2.1. 首次登陆

  1. 1 http://10.0.0.14

 

       首次登陆会要求修改root用户的密码。

 

       之后对到登陆页面,使用root用户登录即可。

 

2.2. 添加SSH Key信息

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

 

 

 

 

       GitLab的页面使用,请自行百度参考。git的命令行使用,可参考前面的几篇博文。

 

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号