Centos7 - 搭建gitlab
gitlab rpm 下载地址:
安装前的准备:
# 安装postfix ,发送邮件
yum -y install policycoreutils openssh-server openssh-clients postfix
# 设置开机启动
systemctl enable postfix && systemctl start postfix
# 防火墙开放ssh及http服务,然后重新加载防火墙列表,如果关闭防火墙就不用配置
firewall-cmd --add-service=ssh --permanent
firewall-cmd --add-service=http --permanent
firewall-cmd --reload
# 设置sshd开机启动 & 启动sshd
systemctl enable sshd && systemctl start sshd
# 安装rmp
rpm -ivh gitlab-ce-12.4.2-ce.0.el7.x86_64.rpm
需要依赖:
yum install policycoreutils-python
安装完毕:
修改配置文件:
/etc/gitlab/gitlab.rb
# 1.修改访问地址和端口
external_url 'http://192.168.184.149:82'
# 2.修改nginx端口
nginx['listen_port'] = 82
# 3.重新配置及启动gilab
gitlab-ctl reconfigure
gitlab-ctl restart
# 4.如果防火请有开要添加端口到防火墙
firewall-cmd --zone=public --add-port=82/tcp --permanent
firewall-cmd --reload
搭建成功:
本文来自博客园,作者:chuangzhou,转载请注明原文链接:https://www.cnblogs.com/czzz/p/15978522.html