Configuração de configuração de timout do Vagrant Windows sem efeito

2

Estou construindo e usando imagens do Linux no Vagrant por enquanto, mas apenas recentemente estendi a cobertura para o Windows. Eu trabalhei imagens para atender sysprep, mas isso levou a tempos de inicialização muito lentos, e tempos de espera subseqüentes WinRM também têm sido problemáticos. Tentei definir valores de tempo limite muito altos, mas eles parecem não ter efeito, ou seja, o tempo limite de inicialização dobrou, mas caiu

Vagrant.configure(2) do |config|
  config.vm.boot_timeout = 1200
  config.vm.guest = "windows"
  config.vm.communicator = 'winrm'
  config.winrm.timeout = 120
  config.winrm.retry_limit = 10

Neste exemplo, imprimi a hora do sistema

Mon Mar 20 18:14:21 NZDT 2017

Esperando 20 minutos de espera

==> default: Forcing shutdown of VM...
==> default: Destroying VM and associated drives...
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'WindowsDocker'...
==> default: Matching MAC address for NAT networking...
==> default: Setting the name of the VM: cbe_default_1489986988330_5366
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
    default: Adapter 1: nat
    default: Adapter 2: hostonly
==> default: Forwarding ports...
    default: 3389 (guest) => 13389 (host) (adapter 1)
    default: 5985 (guest) => 15985 (host) (adapter 1)
    default: 5986 (guest) => 15986 (host) (adapter 1)
    default: 5985 (guest) => 55985 (host) (adapter 1)
    default: 5986 (guest) => 55986 (host) (adapter 1)
    default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Booting VM...
==> default: Waiting for machine to boot. This may take a few minutes...
    default: WinRM address: 127.0.0.1:15985
    default: WinRM username: vagrant
    default: WinRM execution_time_limit: PT2H
    default: WinRM transport: negotiate
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.

Isso saiu depois de 4 minutos

Mon Mar 20 18:18:42 NZDT 2017

Detalhes da plataforma

  • O host é o Windows 10
  • Vagrant 1.9.2
  • VirtualBox 5.1.18
  • Convidado Windows Server 2016
por Jules Clements 20.03.2017 / 07:38

1 resposta

1

Esta mensagem foi enganosa

This means that Vagrant was unable to communicate with the guest machine within the configured ("config.vm.boot_timeout" value) time period

Alterei o tempo limite do WinRM de 120 segundos para 30 minutos e agora o convidado conclui as tentativas de inicialização e de conexão da máquina.

config.winrm.timeout =   1800 # 30 minutes
config.vm.boot_timeout = 1800 # 30 minutes
    
por 20.03.2017 / 21:02

Tags