lamp:警告:远程连接断开。重试

lamp: Warning: Remote connection disconnect. Retrying

我创建了一个 Ubuntu 虚拟主机,这是我当前项目的虚拟服务器。由于我使用的是 symfony,所以我下载了 composer、apache 等。在执行此操作时一切正常。所以在最后一步,我配置了 /etc/apache2/available-sites/000-default.conf 文件并为我的项目设置了新路径。之后我做了 vagrant reload。从我的问题发生的时候开始。启动虚拟机时出现这样的错误:

lamp: Warning: Remote connection disconnect. Retrying...
lamp: Warning: Remote connection disconnect. Retrying...
lamp: Warning: Remote connection disconnect. Retrying...
lamp: Warning: Remote connection disconnect. Retrying...

为什么会这样?我应该在哪里查看以修复此错误?

我的 Vagrant 文件:

Vagrant.configure(2) do |config|
config.vm.box = "precise32"
# Mentioning the SSH Username/Password:
config.ssh.username = "vagrant"
config.ssh.password = "vagrant"
# Begin Configuring
config.vm.define "lamp" do|lamp|
lamp.vm.hostname = "lamp" # Setting up hostname
lamp.vm.network "private_network", ip: "192.168.205.10" # Setting up machine's IP Address
lamp.vm.provision :shell, path: "script.sh" # Provisioning with script.sh
end
# End Configuring
end

提前致谢!

编辑

我已经尝试了一些解决方案: 我的 Hyper-v 已禁用。 VM gui 已启用。

编辑 2

经过一些研究,我意识到命令 vagrant reload 导致了这个错误。仍在寻找解决方案。

如果您多次看到该消息,那是正常的。 Vagrant 在 VM 仍在启动时尝试连接到 VM,因此它失败了。但最后你应该看到一条成功消息,在这种情况下一切都很好,你的机器没有任何问题。

P.S。 "vagrant reload" 仅表示关闭虚拟机并再次打开它。所以它不可能真正成为任何问题的原因;当你 dou "vagrant halt" 然后 "vagrant up".

时,你可能会看到相同的消息