GitLab服务部署

Posted

tags:

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

系统环境:
CentOS 7.6
防火墙 关闭
selinux 关闭

官网地址:
https://about.gitlab.com/install/#centos7

安装和配置必要的依赖关系
yum install -y curl policycoreutils-python openssh-server

systemctl enable sshd 开机自启动sshd
systemctl start sshd 开启sshd

安装邮箱服务
yum install postfix
systemctl enable postfix
systemctl start postfix

下载GitLab 官方yum源
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh | sudo bash

更新yum库
yum makecache

安装GitLab
yum install -y gitlab-ee

安装好之后会出现《GitLab标致》代表安装成功
技术图片

自动配置所需的网站程序和数据库程序(过程耗时稍长)
gitlab-ctl reconfigure

打开PC浏览器 输入其服务器的IP进去Git html页面
点击"寄存器"按钮 注册一个用户,然后登陆

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

Ubuntu部署GitLab

GitLab服务部署

部署自己的gitlab服务器

Gitlab+Jenkins持续部署配置

使用 Gitlab CI 将每个构建部署到服务器

gitlab服务部署及使用