云服务器CentOS下安装GitLab ce教程

Table of Contents

1. 购买服务器

2. 更换为阿里云镜像源(可选)

3. 相关依赖安装

4.gitlab ce安装


1. 购买服务器

华为云:  https://www.huaweicloud.com/

云服务器CentOS下安装GitLab ce教程_第1张图片

ssh远程登录 ssh [email protected]

云服务器CentOS下安装GitLab ce教程_第2张图片

2. 更换为阿里云镜像源(可选)

备份:  mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

下载:  wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo  

(注:下载与服务器对应版本CentOS 7)

云服务器CentOS下安装GitLab ce教程_第3张图片

清除缓存: yum clean all

云服务器CentOS下安装GitLab ce教程_第4张图片

生存缓存: yum makecache

云服务器CentOS下安装GitLab ce教程_第5张图片

3. 相关依赖安装


sudo yum install -y curl policycoreutils-python openssh-server

sudo systemctl enable sshd

sudo systemctl start sshd


sudo yum install postfix

sudo systemctl enable postfix

sudo systemctl start postfix

4.gitlab ce安装

sudo vi /etc/yum.repos.d/gitlab-ce.repo  ,修改配置文件内容如下:

[gitlab-ce]
name=Gitlab CE Repository
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el$releasever/
gpgcheck=0
enabled=1

yum makecache

sudo EXTERNAL_URL="http://xxx.xxx.xxx.xxx" yum install -y gitlab-ce, 地址替换为公网ip

访问ip

云服务器CentOS下安装GitLab ce教程_第6张图片

 

 

 

你可能感兴趣的:(centos,gitlab)