У меня есть простой мастер-бродяга, в котором есть Windows, драйверы для него и установленные гостевые дополнения VB.
Я добавил эту машину как коробку и попытался создать простой vagrant vm только с основными настройками:
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "win"
config.vm.communicator = "winrm"
end
Когда я делаю Vagrant, я получаю тайм-аут:
C:\Vagrant\win-dev> vagrant up Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'win'...
==> default: Matching MAC address for NAT networking...
==> default: Setting the name of the VM: win-dev_default_1415127726713_75064
==> default: Fixed port collision for 5985 => 55985. Now on port 2200.
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
==> default: Forwarding ports...
default: 5985 => 2200 (adapter 1)
default: 22 => 2222 (adapter 1)
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
Он висит там на несколько минут, а затем я получаю сообщение об ошибке:
Timed out while waiting for the machine to boot. This means that
Vagrant was unable to communicate with the guest machine within
the configured ("config.vm.boot_timeout" value) time period.
If you look above, you should be able to see the error(s) that
Vagrant had when attempting to connect to the machine. These errors
are usually good hints as to what may be wrong.
If you're using a custom box, make sure that networking is properly
working and you're able to connect to the machine. It is a common
problem that networking isn't setup properly in these boxes.
Verify that authentication configurations are also setup properly,
as well.
If the box appears to be booting properly, you may want to increase
the timeout ("config.vm.boot_timeout") value.
Я наблюдаю за окном предварительного просмотра и ясно вижу, что машина правильно загружена и ожидает ввода данных пользователем на рабочем столе, но Vagrant не знает об этом.
Я много искал и обнаружил, что у людей были похожие проблемы, но все они были связаны с доступом по ssh.
РЕДАКТИРОВАТЬ: я также пытался с Windows8.1 box от vagrantbox.es и случайным образом от vagrantcloud, получая ту же проблему, так что я уверен, что это проблема конфигурации. Я также попробовал следовать простейшему руководству на сайте Vagrantup и получить ту же ошибку. Также попробовал на другом хосте, не повезло.