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

GitLab安装部署

时间:2018-08-26 22:09:44      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:nal   介绍   pos   color   download   开源   ORC   postgres   团队   

Gitlab介绍

  GitLab是一个利用 Ruby on Rails 开发的开源应用程序,实现一个自托管的Git项目仓库,可通过Web界面进行访问公开的或者私人项目。

GitLab拥有与Github类似的功能,能够浏览源代码,管理缺陷和注释。可以管理团队对仓库的访问,它非常易于浏览提交过的版本并提供一个文件历史库。它还提供一个代码片段收集功能可以轻松实现代码复用,便于日后有需要的时候进行查找。

集成了nginx postgreSQL redis sidekiq等组件

官网 https://about.gitlab.com/downloads

安装

centos7
关闭 NetworkManager 和防火墙 
systemctl stop firewalld.service
systemctl disable firewalld 
systemctl disable NetworkManager

关闭SELinux并确认处于关闭状态 
sed -i s/SELINUX=enforcing/SELINUX=disabled/ /etc/selinux/config
grep SELINUX=disabled /etc/selinux/config
setenforce 0

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

wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-8.9.5-ce.0.el7.x86_64.rpm
rpm -ivh gitlab-ce-8.9.5-ce.0.el7.x86_64.rpm 
vim /etc/gitlab/gitlab.rb 
external_url http://10.10.10.188 #默认是主机名

安装完后需要对GitLab进行配置以及启动:
sudo gitlab-ctl reconfigure

 

GitLab安装部署

标签:nal   介绍   pos   color   download   开源   ORC   postgres   团队   

原文地址:https://www.cnblogs.com/w787815/p/9538937.html

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