1 | 由于需要, Gitlab与Jenkins进行持续集成,现使用CentOS7搞一套Gitlab |
编辑repo文件
1 | vim /etc/yum.repos.d/gitlab-ce.repo |
1 | [gitlab-ce] |
安装
1 | yum install gitlab-ce |
配置
1 | [root@localhost ~]# vim /etc/gitlab/gitlab.rb |
找到external_url那项,改为域名或本机IP地址:
1 | external_url 'http://10.0.10.22' |
启动
1 | [root@localhost ~]# gitlab-ctl reconfigure #过程较慢,耐心等待 |
开机自启
1 | systemctl enable gitlab-runsvdir.service |
Web登陆
1 | http://10.0.10.22 |
配置禁止注册
1 | 一般公司内部使用的话,是禁止注册的,用的话单独开设账号。 |
1 | 工具 -- 设置 -- 取消打钩“Sign-up enabled” -- 保存 |
修改时区
1 | [root@localhost ~]# cat /etc/gitlab/gitlab.rb |grep time_zone |
- 本文作者: GaryWu
- 本文链接: https://garywu520.github.io/2017/12/16/Gitlab部署CentOS7/
- 版权声明: 本博客所有文章除特别声明外,均采用 MIT 许可协议。转载请注明出处!