六、分布式环境搭建——Gitlab服务器搭建

阿里云服务器搭建gitlab文档
https://help.aliyun.com/document_detail/52857.html?spm=a2c4g.11186623.6.1013.382571aftuvKK3
阿里云服务器注意需要配置网络安全访问
https://mp.csdn.net/mdeditor/93851735#

版本 centos7 gitlab-ce-10.8.2-ce.0.el7.x86_64.rpm(注意版本对应)

1 Gitlab官网地址
首页:https://about.gitlab.com/
安装说明:https://about.gitlab.com/installation/

2安装命令摘录(官网)

sudo yum install -y curl policycoreutils-python openssh-server cronie
sudo lokkit -s http -s ssh
sudo yum install postfix
sudo service postfix start
sudo chkconfig postfix on
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh | sudo bash
sudo EXTERNAL_URL=“http://gitlab.example.com” yum -y install gitlab-ee
实际问题:yum 安装 gitlab-ee(或 ce)时,需要联网下载几百 M 的安装文件,非常耗
时,所以应提前把所需 RPM 包下载并安装好。
下载地址为:
https://packages.gitlab.com/gitlab/gitlab-ce/packages/el/7/gitlab-ce-10.8.2-ce.0.el7.x86_64.rpm

3调整后的安装过程 调整后的安装过程(以此为准)
sudo rpm -ivh /opt/gitlab-ce-10.8.2-ce.0.el7.x86_64.rpm
sudo yum install -y curl policycoreutils-python openssh-server cronie
yum install lokkit
sudo lokkit -s http -s ssh
sudo yum install postfix
sudo service postfix start
sudo chkconfig postfix on
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo EXTERNAL_URL=“http://gitlab.example.com” yum -y install gitlab-ce

当前步骤完成后重启。

4 gitlab 服务操作

1)初始化配置 gitlab
gitlab-ctl reconfigure

2)启动 gitlab 服务
gitlab-ctl start

3)停止 gitlab 服务
gitlab-ctl stop

5浏览器访问

访问 Linux 服务器 IP 地址即可,如果想访问 EXTERNAL_URL 指定的域名还需要配置
域名服务器或本地 hosts 文件。
初次登录时需要为 gitlab 的 root 用户设置密码。

六、分布式环境搭建——Gitlab服务器搭建_第1张图片
其他操作类似github

※应该会需要停止防火墙服务:
service firewalld stop(生产上需要运维设置防火墙开发端口,不能直接关闭防火墙)

你可能感兴趣的:(Git,环境搭建)