首先准备一台centos7服务器,配置最好是8G以上内存(如果内存小于8G,建议安装gitlab8的老版本,内存小强行上最新版可能导致gitlab无法启动),用root账户登录。
给yum配置epel源,参考:https://blog.csdn.net/lxl1531/article/details/109246164
安装服务:yum -y install policycoreutils openssh-server openssh-clients postfix
启动postfix并将postfix服务设置成开机自启:systemctl enable postfix && systemctl start postfix
通过wget命令下载gitlab安装包(我的机器配置低,所以下载的8.17的老版本,这个版本4G内存也跑得起来,如果你的服务器内存8G以上,可以直接安装最新版gitlab),
命令:wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-8.17.8-ce.0.el7.x86_64.rpm
安装gitlab:rpm -ivh gitlab-ce-8.17.8-ce.0.el7.x86_64.rpm
等待安装完成后,修改配置:
[root@pa_cicd gitlab]# vim /etc/gitlab/gitlab.rb
找到external_url 'http://localhost',我的在第13行
修改为(端口自己定,找一个空闲的端口,通过netstat -ntpl命令看服务器哪些端口在用着):
external_url 'http://服务器ip:8100'
unicorn['port'] = 8101
运行命令重载配置,这个命令耗时挺多的:gitlab-ctl reconfigure
执行命令重启gitlab:gitlab-ctl restart
浏览器访问:http://服务器ip:8100/
如果此时打不开,可能是防火墙没有开放我们设置的8100和8101端口,这时需要用命令手动开通一下:
查看开放了哪些端口:firewall-cmd --list-ports
添加开放指定端口:firewall-cmd --zone=public --add-port=8100/tcp --permanent
firewall-cmd --zone=public --add-port=8101/tcp --permanent
重载防火墙:firewall-cmd --reload
然后就可以访问页面了:http://服务器ip:8100/,根据页面提示修改初始密码。默认的账户是root。