Centos 7.x 配置Gitlab

Posted -猫和大叔 -

tags:

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

 

 1. 安装并配置必要的依赖关系

如果你想使用 Postfix 发送邮件,请在安装过程中根据提示选择 ‘Internet Site‘。 你也可以用 Sendmail 或者 配置一个自定义的 SMTP 服务 并 把它作为一个 SMTP 服务器。

在 CentOS 系统上,下面的命令将会打开系统防火墙 HTTP 和 SSH 的访问。 

 


sudo yum -y install curl policycoreutils openssh-server openssh-clients
sudo systemctl enable sshd
sudo systemctl start sshd
sudo yum -y install postfix
sudo systemctl enable postfix
sudo systemctl start postfix

sudo firewall-cmd --permanent --add-service=http

sudo systemctl reload firewalld

2. 添加 GitLab 镜像源并安装 

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

如果你不太习惯使用命令管道的方式安装镜像仓库,你可以在这里找到 完整的安装脚本 或者 选择系统对应的安装包 使用下面的命令手动安装。 

curl -LJO https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-XXX.rpm
rpm -i gitlab-ce-XXX.rpm

3. 配置并启动 GitLab 

sudo gitlab-ctl reconfigure

4. 通过浏览器访问上一步配置的域名 

第一次访问 GitLab,系统会重定向 url 到重置密码的页面,你需要输入初始化管理员账号的密码。 设置完成后,系统会重定向到登录界面,你就可以使用刚才输入的密码登录系统了。

系统默认的管理员账号为 root, 登录系统后,你可以修改管理员账号为自己喜欢的账号。

 如需修改访问地址以及端口, vim /etc/gitlab/gitlab.rb    --    external_url ‘http://localhost:90‘

文章来源:GITLAB

以上是关于Centos 7.x 配置Gitlab的主要内容,如果未能解决你的问题,请参考以下文章

centos7搭建通过ip访问的gitlab

CentOS 7.6 搭建Gitlab教程

centos 7部署并汉化Gitlab及基础操作

centos 7安装gitlab及使用

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

gitlab install centos 详细步骤!