虽然可托管代码的平台有很多选择,国外的有 github,国内的有 gitee, coding 之类,但很多公司都会选择自建 gitlab 服务,觉得将代码托管在第三方,内心并不踏实
以下演示如何在 centos7 上搭建 gitlab
附上官网安装地址:https://about.gitlab.com/install/#centos-7
安装依赖包
# 安装依赖
$ yum install -y curl policycoreutils openssh-server openssh-clients policycoreutils-python
$ systemctl enable sshd
$ systemctl start sshd
# 使用postfix发送邮件通知
$ yum install -y postfix
$ systemctl enable postfix
$ systemctl start postfix
配置GitLab的仓库地址并下载安装包
添加仓库地址
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh | sudo bash
安装GitLab
yum install -y gitlab-ee
配置GitLab
$ sudo vim /etc/gitlab/gitlab.rb
# 指定访问的端口
# external_url 'http://127.0.0.1:9090'
# 重启gitlab
$ gitlab-ctl reconfigure
开放指定端口
指定的端口要加入防火墙,不然无法访问
# 启动防火墙
$ sudo systemctl start firewalld
# 查看防火墙
$ firewall-cmd --state
# 列出开放的端口
$ firewall-cmd --list-ports
# 将指定端口加入防火墙
$ firewall-cmd --zone=public --add-port=9090/tcp --permanent
# 重启防火墙
$ firewall-cmd --reload
此外,还需将端口加入安全组,各家云服务器的操作大同小异
访问gitlab
访问 http://127.0.0.1:9090/
首次访问需要初始化root密码,设置完成后,就能使用root登录
image.png
网友评论