改变独角兽的港口

时间:2014-03-12 00:45:18

标签: port unicorn gitlab

我已经按照本教程中的描述设置了gitlab:https://github.com/gitlabhq/gitlabhq/blob/6-4-stable/doc/install/installation.md

现在我需要更改unicorn正在侦听的端口。我更改了unicorn.rb文件。但是,独角兽仍在尝试连接到8080端口。

我错过了什么?

1 个答案:

答案 0 :(得分:3)

更改config/unicorn.rb后,您需要在重新启动Unicorn时检查日志(如log/unicorn.stderr.log中所示)。

您将看到根本原因(例如issue 2236

issue 4928一样,确保首先停止独角兽(issue 5451中相同)。


2017年第四季度更新(3年后)

{p} Markus Piipari使用GitLab 10.4使用this answer报告设置:

unicorn['port'] = 8081
gitlab_workhorse['auth_backend'] = "http://localhost:8081"
  

然后跑步:

sudo gitlab-ctl reconfigure
sudo gitlab-ctl restart

这应该足以改变独角兽端口。