千家信息网

CentOS 7搭建GitLab

发表于:2024-09-24 作者:千家信息网编辑
千家信息网最后更新 2024年09月24日,简介:GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的web服务。安装方法是参考GitLab在GitHub上的Wiki页面。特点:1.Web框架使用R
千家信息网最后更新 2024年09月24日CentOS 7搭建GitLab

简介:
GitLab 是一个用于仓库管理系统的开源项目,使用Git作为代码管理工具,并在此基础上搭建起来的web服务。安装方法是参考GitLab在GitHub上的Wiki页面。


特点:
1.Web框架使用RubyonRails。
2.基于MIT代码发布协议。
3.需要gitolite协同工作

一、安装依赖

1.安装ssh

sudo yum install -y curl policycoreutils-pythonopenssh-server

2.将SSH服务设置成开机自启动 ,启动SSH服务

sudo systemctl enable sshdsudo systemctl start sshd

3.安装Postfix

sudo yum install postfix

4.将postfix服务设置成开机自启动,并启动

sudo systemctl enable postfixsudo systemctl start postfix

5.安装policycoreutils-python

yum install policycoreutils-python

二、安装gitlab

1.gitlab rpm包下载
centos 6系统的下载地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6
centos 7系统的下载地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7

wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-11.11.5-ce.0.el7.x86_64.rpm

2.gitlab rpm包安装

rpm -i gitlab-ce-11.11.5-ce.0.el7.x86_64.rpm

三、修改gitlab配置文件指定服务器ip和自定义端口

1.修改etc/gitlab/gitlab.rb文件中external_url的值,分配一个不会冲突的端口号,默认80

2.重置并启动GitLab

gitlab-ctl reconfiguregitlab-ctl restart
0