windows-7 – 当我在Windows 7命令行上使用`Vagrant Up`时,为什么Vagrant不会进入我的虚拟盒?

前端之家收集整理的这篇文章主要介绍了windows-7 – 当我在Windows 7命令行上使用`Vagrant Up`时,为什么Vagrant不会进入我的虚拟盒?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
每当我尝试Vagrant Up时,它会加载盒子并完成大部分工作,但是因为我正在尝试使用Puppet来配置这个CentOS 6.3最小化,我需要SSH在Vagrant Up期间工作(如果我希望它尽可能自主) .

我从Vagrant的INFO日志中获得以下信息:

DEBUG virtualBox_4_2:   - [1,"ssh",2222,22]
 INFO ssh: Connecting to SSH: 127.0.0.1:2222
 INFO ssh: SSH not up: #<Timeout::Error: execution expired>
 INFO subprocess: Starting process: ["C:\\Program Files\\Oracle\\VirtualBox\\VBoxManage.exe","showvminfo","c2e7375d-159f-4014-9bda-ff9914423f4c","--machinereadable"]
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: name="Vagrant-Apache-Nick_1360372174"
在Vagrant Up期间,Windows系统会尝试连接到SSH.如果您在命令行上键入:
set VAGRANT_LOG=INFO

您可能会看到它失败并尝试了几次.它看起来像这样:

INFO ssh: Connecting to SSH: 127.0.0.1:2222

发生这种情况是因为超时设置为10.可以通过在Vagrantfile中放置以下内容修改

config.ssh.timeout = 300

您可以使用任何您喜欢的号码,但我推荐100以上的东西.

资料来源:

> This guy had some useful troubleshooting information.
> Vagrant Docs for Vagrantfiles
> Vagrant Docs for Vagrantfile SSH Timeout
> Vagrant Docs for Debugging
> Hours of Troubleshooting (Keep Smilin’)

原文链接:https://www.f2er.com/windows/363309.html

猜你在找的Windows相关文章