1. 安装依赖软件
yum -y install policycoreutils openssh-server openssh-clients postfix

2.设置postfix开机自启,并启动,postfix支持gitlab发信功能

systemctl enable postfix && systemctl start postfix

3.下载gitlab安装包,然后安装

wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-11.3.3-ce.0.el7.x86_64.rpm
 
rpm -i gitlab-ce-11.3.3-ce.0.el7.x86_64.rpm

4.修改gitlab配置文件指定服务器ip和自定义端口

vim /etc/gitlab/gitlab.rb

修改成如下:
IP地址+端口号: external_url ‘http://192.168.0.217:8010’

5.重置并启动GitLab

gitlab-ctl reconfigure
 
gitlab-ctl restart

6.访问页面
打开浏览器,输入前面配置的地址,如果本机可以访问,但其他电脑访问不了,应该是防火墙拦截了端口,可以在防火墙添加端口:

/sbin/iptables -I INPUT -p tcp --dport 8010 -j ACCEPT

如果访问的时候报502错误,加上这句:

chmod -R 755 /var/log/gitlab

7.修改root密码
第一次访问时,会自动跳转到修改密码的界面