07 CentOS7里面安装gitlab

Posted 张力的程序园

tags:

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

前面几节我们了解了git以及github的用法,但公司一般不会把自己的代码保存到码云甚至github,所有就出现了这样一个需求,像github但是代码是存在于自己的服务器上的,而gitlab就是做这件事情的。

1、环境约束

  • CentOS7 64
  • gitlab-ce-10.5.7-ce.0.el7.x86_64

2、前提约束

  • 以root账号登录CentOS,如果是虚拟机,请确保CentOS能联网

2、操作步骤

  • 执行以下命令
# 安装wget、policycoreutils-python以及openssh-server
sudo yum install -y wget policycoreutils-python openssh-server
# 添加gitlab-ce源,作者这边下载的是gitlab-ce-10.5.7-ce.0.el7.x86_64,比较耗时
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.5.7-ce.0.el7.x86_64.rpm
# 安装gitlab-ee
rpm -i gitlab-ce-10.5.7-ce.0.el7.x86_64.rpm

出现以下界面,则安装成功:

  • 编辑 /etc/gitlab/gitlab.rb
# 修改external_url为当前服务器的ip以及端口
external_url ‘http://192.168.100.192:9090‘
  • 继续执行以下命令:
# 关闭防火墙
systemctl stop firewalld
# 重置gitlab
gitlab-ctl reconfigure
# gitlab-ctl restart

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

centos7 gitlab 9.1.0 安装以及汉化

Centos7 安装 GitLab 代码管理服务器

centos7搭建gitlab

033-centos7下安装gitlab

#yyds干货盘点#Centos7环境下手把手教你安装Gitlab代码管理工具

centos7安装gitlab-ee