2

我在 Ubuntu 12.04 上,我的 Vagranfile 看起来像这样:

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|

config.vm.box = "base"
config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box"

config.vm.network :forwarded_port, guest: 80, host: 8080

config.vm.provision :puppet do |puppet|
  puppet.manifests_path = "puppet/manifests"
  puppet.module_path = "puppet/modules"
  puppet.manifest_file  = "init.pp"
  puppet.options="--verbose --debug"
end

end

这应该运行良好,相同的配置在我的 macbook 中工作正常。我使用 Vagrant 1.3.5 和 VirtualBox 4.1.12(但在我尝试使用 4.2.18 之前)

我不知道如何解决这个问题,我已经卡了好几天了。任何帮助都会很棒。

4

2 回答 2

2
  1. 确保您拥有正确版本的 GuestAdditions。或者只是使用vagrant-vbguest 插件,它会为你检查和安装它。事实上,如果你使用 VirtualBox,它是必须有插件的。
  2. 尝试增加config.ssh.timeout(默认:5 分钟)

这不是真正的答案,而是可能的解决方法。关于 vagrant有一个未解决的问题。

于 2013-11-06T20:33:48.777 回答
0

这是一个 Vagrant 错误,应该在下一个版本中修复。

到目前为止,只需确保该~/vagrant.d/insecure_private_key文件由启动 Vagrant 的同一用户拥有,并且具有权限600,这应该会有所帮助。

于 2014-10-23T12:23:15.837 回答