最近比较无聊,想研究下gitlab,所以就尝试了一下centos7下面gitlab的搭建
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
3.下载安装包
gitlab提供了rpm包方便安装
由于在中国,可能无法连接国外服务器下载资源
我们可以使用清华大学提供的镜像下载gitlab的rpm包
下载地址:https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/
由于博主系统是centos7并且我要装的是最新版本的
所以博主输入了以下命令
wget rpm -ivh gitlab-ce-9.3.0-ce.0.el7.x86_64.rpm
输入命令之后等待安装完成,进行下一步配置
vim /etc/gitlab/gitlab.rb
修改其中的
external_url 'http://localhost:90'
为你的网站地址
然后输入以下指令使配置生效
sudo gitlab-ctl reconfigure
生效后gitlab会自动启动,按照提示打开网页操作即可