我自發地遇到了啓動我的流浪機器的問題。當試圖運行無業遊民了,我得到以下錯誤:流浪者未使用的港口碰撞 - 無法運行流浪
Vagrant cannot forward the specified ports on this VM, since they
would collide with some other application that is already listening
on these ports. The forwarded port to 80 is already in use
on the host machine.
To fix this, modify your current project's Vagrantfile to use another
port. Example, where '1234' would be replaced by a unique host port:
config.vm.network :forwarded_port, guest: 80, host: 1234
在我vagrantfile我已經改變了這些端口隨機未使用的但仍然出現錯誤。
運行時lsof -i tcp:80
沒有服務返回,同樣適用於我嘗試過的其他端口。
以前有沒有其他人有過這個問題?我開始認爲它不是端口相關的,我也嘗試重新啓動我的機器。
我遇到了和西蒙一樣的問題。 '1234'是錯誤消息中的一個隨機示例,它是關於如何更改主機端口的建議。這不是當前的主機端口。您可以在消息的前面看到主機端口,它說:「主機上轉發的端口80已在使用 」。 – Qaz