GitLab 的安装

Posted Nage

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GitLab 的安装相关的知识,希望对你有一定的参考价值。

系统环境:CentOS7 切记:安装GitLab 时会自动安装GitLab自带的nginx,为了避免冲突,部署环境时先不要安装Nginx。

官网安装及汉化安装

官网安装最新版GitLabhttps://about.gitlab.com/installation/ 选择对应的系统版本

按照官网的教程一步步安装,很简单。

sudo yum install curl policycoreutils openssh-server openssh-clients
sudo systemctl enable sshd
sudo systemctl start sshd
sudo yum install postfix
sudo systemctl enable postfix
sudo systemctl start postfix
sudo firewall-cmd --permanent --add-service=http
sudo systemctl reload firewalld

 准备工作做好后开始安装GitLab

curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
sudo yum install gitlab-ce

 安装完毕后执行注册启动

sudo gitlab-ctl reconfigure

IE输入服务器的IP地址即可登录GitLab。

汉化安装:

如果选择安装GitLab汉化版,那么往往不能安装最新版的。这里以目前最新的GitLab 8.8.5汉化版举例。

下载官方GitLab8.8.5版 地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/选择对应的系统下载相应版本的rpm包。

上传到服务器。按照官方的方法安装

rpm -ivh gitlab-ce-8.8.5-ce.1.el7.x86_64.rpm

安装后同样执行reconfigure启动

sudo gitlab-ctl reconfigure

 

以上是关于GitLab 的安装的主要内容,如果未能解决你的问题,请参考以下文章

安装gitlab并汉化

GitLab安装与汉化-实战

持续集成之Gitlab安装与应用

持续集成之Gitlab安装与应用

centos 7安装gitlab及使用

版本管理 GitLab 的安装及管理 (CentOS 7)