Tempo limite enquanto aguarda a inicialização da máquina !! Vagrant-Virtualbox

2

Eu tenho uma máquina host do gentoo (linux). Em que, eu tenho Virtualbox 4.3.28 e vagrant 1.4.3 instalado (estas são a última versão disponível para o gentoo).

No vagrant up, o Ubuntu 14.04 é lançado. Eu também sou capaz de ssh para o Ubuntu. Eu também tentei vagrant destruir e, em seguida, vagrant up. Mas então, assim que é lançado, recebo o seguinte erro. Abaixo está o meu erro Vagrantfile e saída.

P.S. Eu criei o Ubuntu 14.04 caixa base a partir do zero.

Vagrantfile

# -*- mode: ruby -*-

# vi: set ft=ruby :

    Vagrant.configure(2) do |config|
      config.vm.box = "Ubuntu"
      config.vm.boot_timeout = "700"
      config.vm.provider :virtualbox do |vb|
      vb.gui = true
      end

    end 

Saída no terminal

Bringing machine 'default' up with 'virtualbox' provider...
[default] Clearing any previously set forwarded ports...
[default] Clearing any previously set network interfaces...
[default] Preparing network interfaces based on configuration...
[default] Forwarding ports...
[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. This can
mean a number of things.

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.

Alguma solução para corrigir este problema?

    
por Dana 08.10.2015 / 21:45

1 resposta

0

Tente obter a versão mais recente do vagrant. Ele resolveu meu problema relacionado ao vagrant . Aqui está uma ebuild disponível: link .

Então, etapas, já que você já instalou app-portage / layman :

  1. layman -a johu
  2. layman -S , ou melhor ainda (?) eix-sync
  3. emerge -s vagrant e app-emulation / vagrant-bin, versão 1.7.4 devem aparecer como disponíveis
  4. emerge -av vagrant-bin

Em seguida, tente novamente provisionar uma VM.

    
por 18.12.2015 / 18:06