赞
踩
查看系统版本
cat /etc/redhat-release
我的Linux服务器是CentOS Linux release 7.3 的
这是我的配置仅供参考:
linux版本:centos 7.3
CPU:4核
内存:8G
硬盘:100G
yum -y install curl policycoreutils openssh-server openssh-clients postfix
yum -y wget
通过清华大学的地址下载GitLab镜像
wget https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-13.1.2-ce.0.el7.x86_64.rpm
如果上面的命令报错SSL证书过期可以使用下面这条命令
wget --no-check-certificate https://mirrors.tuna.tsinghua.edu.cn/gitlab-ce/yum/el7/gitlab-ce-13.1.2-ce.0.el7.x86_64.rpm
rpm -i XXX
安装完成
external_url ‘ip+端口’
我这个用的是默认80的端口
external_url 'http://localhost'
如果用使用的是其他的端口需要修改两个地方,我用的是13的版本所以是
改这个两个地方
puma['listen'] = '127.0.0.1'
puma['port'] = 8080(你要修改的端口)
13以下的版本则是修改
unicorn['listen'] = '127.0.0.1'
unicorn['port'] = 8080(你要修改的端口)
按入ESC 输入:wq 保存配置
gitlab-ctl reconfigure
gitlab-ctl restart
gitlab-ctl status
Failed to get final advertise address: No private IP address found, and explicit IP not
alertmanager['flags'] = {
'cluster.advertise-address' => "127.0.0.1:9093"
}
然后刷新配置重启即可
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --reload
firewall-cmd --query-port=80/tcp
直至安装完成
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。