title: gitlub私服的搭建
最近應(yīng)公司需求荚守,搭建gitlab私服练般,在這里做一個簡單的記錄锈候。
1.安裝和配置必要的依賴
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
sudo firewall-cmd --permanent --add-service=http
sudo systemctl reload firewalld
2.使用國內(nèi)鏡像安裝,新建 /etc/yum.repos.d/gitlab-ce.repo泵琳,添加以下內(nèi)容,否則下載安裝太過緩慢
[gitlab-ce]
name=gitlab-ce
baseurl=http://mirrors.tuna.tsinghua.edu.cn/ gitlab-ce/yum/el6
repo_gpgcheck=0
gpgcheck=0
enabled=1
gpgkey=https://packages.gitlab.com/gpg.key
3.安裝并初始化gitlab
# 安裝 GitLab 社區(qū)版
sudo yum install gitlab-ce
# 初始化 GitLab
sudo gitlab-ctl reconfigure
最后通過ip訪問80端口即可(giutlab默認(rèn)使用80端口)