1. 程式人生 > >gitlab安裝與配置

gitlab安裝與配置

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安裝與配置