GITLAB安装在CentOS上的挑战

时间:2017-11-11 15:08:03

标签: gitlab

我在云环境中的CentOS 7.4中安装了GITLAB,我启用了http,hhtps,ssh端口 当我打开系统时,我得到“Apache HTTP服务器”欢迎页面而不是GIT LAB页面,如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

你的环境可能安装了httpd,GitLab默认使用nginx。

您可以停止并禁用httpd,然后重新启动GitLab

$ sudo systemctl status httpd
$ sudo systemctl stop httpd
$ sudo systemctl disable httpd

$ sudo gitlab-ctl restart