您的当前位置:首页正文

centos7下安装指定版本gitlab方法(联网+本地两种方法)

2024-11-08 来源:个人技术集锦

centos7下安装指定版本gitlab方法(联网+本地两种方法)

1.安装和配置必要的依赖项

#安装依赖关系

yum install -y curl policycoreutils-python openssh-server perl

#开启并启动sshd

systemctl enable sshd
systemctl start sshd

#在系统防火墙中打开HTTP,HTTPS。

firewall-cmd --permanent --add-service=http
firewall-cmd --permanent --add-service=https

#配置完刷新防火墙配置使之前的配置生效

systemctl reload firewalld

2、安装Postfix以发送通知电子邮件。

如果要使用其他解决方案发送电子邮件,请跳过此步骤并在安装GitLab之后配置外部SMTP服务器。
#安装postfix


Top