码迷,mamicode.com
首页 > 其他好文 > 详细

CentOS 7搭建GitLab

时间:2019-11-27 10:37:47      阅读:73      评论:0      收藏:0      [点我收藏+]

标签:web   str   postfix   mct   服务器   管理系统   工作   项目   文件中   

简介:
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

CentOS 7搭建GitLab

标签:web   str   postfix   mct   服务器   管理系统   工作   项目   文件中   

原文地址:https://blog.51cto.com/13555423/2453826

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!