废话不多说,搞起!
环境centos7.2
一下来自官方install 文档
sudo yum install curl policycoreutils openssh-server openssh-clients -y 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
到这步都没什么问题,下面正式安装gitlab,官方给出的是
curl -sS https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash sudo yum install gitlab-ce -y
但是gitlab最新版9.4.1是340M,下载过程异常缓慢,坑
反正是rpm 包安装
我直接到这个网站下载
https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/
然后安装
rpm -ivh gitlab-ce-9.4.1-ce.0.el7.x86_64.rpm
安装完成之后会有提示让你重新配置gitlab
sudo gitlab-ctl reconfigure
gitlab 开始自己重新配置的,几分钟后,就可以用了
原文地址:http://wks97.blog.51cto.com/2139464/1951469