在我的Linux服务器上,Jenkins已经安装好了,我尝试在同一台服务器上安装GitLab,并使用以下命令:
sudo yum install -y curl policycoreutils-python openssh-server cronie
sudo lokkit -s http -s ssh
curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ee/script.rpm.sh | sudo bash
sudo EXTERNAL_URL="http://gitlab.fabcd.com" yum -y install gitlab-ee它说现在已经安装了GitLab,但是当我在浏览器中打开URL时,它不会打开,我的Jenkins也不能工作。
请帮助我回滚这个GitLab安装,因为我不想搞乱我的詹金斯。
发布于 2017-11-17 11:22:09
两个服务器都在端口8080中公开。
您应该将其中一个更改为不同的端口。
若要设置/etc/gitlab/gitlab.rb端口,请编辑文件GitLab
external_port "8888"然后运行reconfigure:
gitlab-ctl reconfigurehttps://stackoverflow.com/questions/47349121
复制相似问题