GitLaba安装

一、安装依赖
yum -y install policycoreutils openssh-server openssh-clients postfix

启动ssh服务&设置为开机启动

systemctl enable sshd && sudo systemctl start sshd

查看ssh服务状态
systemctl status sshd

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

systemctl enable postfix && systemctl start postfix

开放ssh以及http服务,然后重新加载防火墙列表

firewall-cmd --add-service=ssh --permanent
firewall-cmd --add-service=http --permanent
firewall-cmd --reload

在线下载安装包:

wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el6/gitlab-ce-13.5.7-ce.0.el6.x86_64.rpm

安装:

rpm -ivh gitlab-ce-13.5.7-ce.0.el6.x86_64.rpm

修改配置

vi /etc/gitlab/gitlab.rb

需要修改的内容如下(端口号需保持一致)

external_url 'http://192.168.254.128:7777'
nginx['listen_port'] = 7777

把端口添加到防火墙

firewall-cmd --zone=public --add-port=7777/tcp --permanent
firewall-cmd --reload

gitlab-ctl reconfigure #重载配置文件
gitlab-ctl restart #启动

上一篇:Centos 7搭建Gitlab服务器超详细Centos 7搭建Gitlab服务器超详细(搭建成功)


下一篇:gitlab数据备份与恢复