1、首先在 GitLab 国内源下载 GitLab 的安装包:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-15.6.1-ce.0.el7.x86_64.rpm2、下载GitLab rpm包,之后通过yum 直接安装即可
yum install gitlab-ce-15.6.1-ce.0.el7.x86_64.rpm -y
3、安装完成后,需要修改几处配置
vim /etc/gitlab/gitlab.rb
- 将 external_url 更改为自己的发布地址,可以是服务器的 IP,也可以是一个可被解析的域名:
- 如果已经安装了 Prometheus 监控平台, GitLab 自带的 Prometheus 可以无需安装,
后期可以安装 GitLab Exporter 即可进行监控。关闭 Prometheus 插件(可选)
- 更改完成后需要重新加载配置文件
gitlab-ctl reconfigur
- 加载配置完成以后,可以看到如图信息
- 通过浏览器访问GitLab,账号 root,默认密码在/etc/gitlab/initial_root_password
注:/etc/gitlab/initial_root_password 里面的密码只保留24小时,24小时候会删除。登录后记得修改密码
标签:GitLab,gitlab,ce,yum,安装,el7 From: https://www.cnblogs.com/albert919/p/16951217.html