Linux 搭建私服Gitlab
Gitlab官网
一. 获取yum源
-
访问清华大学镜像站
-
搜索gitlab-ce
-
找寻适合的版本
点击yum目录
点击el7
选择适合自己的版本下载
ps:也可直接把该网址写成yum源(本人采用这种)
二. 配置repo文件
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost ~]# vim gitlab.repo
[gitlab]
# 名称
name=gitlab-ce
# 源地址
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7
# 开启
enabled=1
# 内部软件安装gbgcheck关闭即可
gpgcheck=0
三. 安装
由于gitlab将近1个G,下载时间会很长
[root@localhost ~]# yum -y install gitlab-ce
四. 配置访问地址
ip:服务器ip
port:访问端口
[root@localhost ~]# vim /etc/gitlab/gitlab.rb
# extenal_url 'http://ip:port'
五. 启动
- 重新加载配置
- 重启gitlab
[root@localhost ~]# gitlab-ctl reconfigure
[root@localhost ~]# gitlab-ctl restart
六.访问
- ⭐️获取账号密码
登录账号默认为:root
密码通过文件查询获取
[root@localhost ~]# cat /etc/gitlab/initial_root_password ....... Password: 32ADmL2uChmwsBYIBFfPSwA2uyALCbmok3RSofidUUo=
-
⭐️访问
访问地址 -> http://ip:port
七. 常用命令
停止运行
# gitlab-ctl stop
启动
# gitlab-ctl start
重启
# gitlab-ctl restart
重新加载配置
# gitlab-ctl reconfigure
查看状态
# gitlab-ctl status
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/63266.html