peter Schiza
peter Schiza

Reputation: 387

Getting timeout on vagrant up

Today I have started learning Vagrant. Creating first, base virtual machine ( hashicorp/precise32) went pretty smooth. So I wanted to test another box, this time :puppetlabs/ubuntu-14.04-32-puppet. However im getting this msg : default: Warning: Connection timeout. Retrying... I have read that it might be because of disabled virtualization, but as I understand virtualization it's only needed for 64bit machines. So what can be problem here? Could anyone help me, please? Thanks in advance.

Upvotes: 0

Views: 187

Answers (1)

miltone
miltone

Reputation: 4721

try

  • increase 'ssh_wait_timeout'
  • increase 'boot_wait'
  • activate the vb.gui options in Vagrantfile
  • increase the 'config.vm.boot_timeout options in Vagrantfile
  • disable the shared folder with this line config.vm.synced_folder '.', '/vagrant', disabled: true in vagrantfile
  • update Vagrant (latest is 1.8.1)
  • update VirtualBox (latest is 5.0.12)
  • cross the finger

Upvotes: 1

Related Questions