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

gitlab安装与配置

时间:2017-08-25 09:35:49      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:git   github   gitlab   



1、基础环境准备

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

2、安装gitlab-ce

curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash
yum install -y gitlab-ce

备注:由于网络原因可以使用其它网站的源

vim /etc/yum.repos.d/gitlab-ce.repo
[gitlab-ce]
name=gitlab-ce
baseurl=https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
repo_gpgcheck=0
gpgcheck=0
enabled=1
gpgkey=https://packages.gitlab.com/gpg.key
yum makecache
yum install gitlab-ce -y

3、配置并启动gitlab-ce

gitlab-ctl reconfigure

查看gitlab状态

gitlab-ctl status

关闭gitlab:gitlab-ctl stop
启动gitlab:gitlab-ctl start
重启gitlab:gitlab-ctl restart

3、配置并启动gitlab-ce

修改访问页面URL

vim /etc/gitlab/gitlab.rb
external_url ‘http://gitlab.oceanwing.com‘

4、登录,第一次需要设置密码

技术分享


5、关闭注册 Admin-->settings --> Sign-in Restrictions

技术分享

技术分享

 


本文出自 “实践出真知” 博客,请务必保留此出处http://m51cto.blog.51cto.com/53087/1959159

gitlab安装与配置

标签:git   github   gitlab   

原文地址:http://m51cto.blog.51cto.com/53087/1959159

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