温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

CentOS 7搭建GitLab

发布时间:2020-07-17 20:01:16 来源:网络 阅读:437 作者:李佳良 栏目:系统运维

简介:
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 sshd
sudo systemctl start sshd

3.安装Postfix

sudo yum install postfix

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

sudo systemctl enable postfix
sudo 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 reconfigure
gitlab-ctl restart
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI