开始之前,准备一台全新的centos7系统虚拟机备用
在CentOS系统上安装所需的依赖:ssh,防火墙,postfix(用于邮件通知) ,wget,以下这些命令也会打开系统防火墙中的HTTP和SSH端口访问。
注意: su root
1. 安装ssh
sudo yum install -y curl policycoreutils-python openssh-server
2. 启动ssh和设置为开机启动
sudo systemctl start sshd sudo systemctl enable sshd
3. 安装防火墙
# 安装防火墙 yum install firewalld systemd -y # 开启防火墙 service firewalld start # 添加http服务到firewalld,pemmanent表示永久生效,若不加--permanent系统下次启动后就会失效。 sudo firewall-cmd --permanent --add-service=http # 重启防火墙 sudo systemctl reload firewalld
4. 安装邮件服务
# 安装 sudo yum install postfix # 启动 sudo systemctl start postfix
5. 安装gitlab
# 拉取镜像 wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm # 安装 rpm -i gitlab-ce-10.0.0-ce.0.el7.x86_64.rpm
出现如图说明安装成功
需要修改配置:
# 修改gitlab配置文件指定服务器ip和自定义端口: vim /etc/gitlab/gitlab.rb # 重新加载配置和重启 gitlab-ctl reconfigure gitlab-ctl restart
这里有个注意事项,8080是nginx的默认端口, 最后不要使用8080端口。使用的画可能会出现这个错误:
重新启动后,等待几分钟,就安装成功了