Roman Dibikhin
Roman Dibikhin

Reputation: 856

Vagrant cannot start VirtualBox image

When I run vagrant up it goes ok, but after Booting VM... step it stops with error:

==> default: Waiting for machine to boot. This may take a few minutes...
The guest machine entered an invalid state while waiting for it
to boot. Valid states are 'starting, running'. The machine is in the
'poweroff' state. Please verify everything is configured
properly and try again.

I can run my image manually with VirtualBox GUI, it loads ok and shows me login:.

Is there any way to find what is wrong and how to fix it?

Here are more details:

CPU w/o virtualization

Vagrant 1.7.4

VirtualBox 5.0.8r103449

ruby 2.1.5p273 (2014-11-13 revision 48405) [i386-mingw32]

OS Name:                   Microsoft Windows 8.1 Pro
OS Version:                6.3.9600 N/A Build 9600
System Type:               x64-based PC

Upvotes: 0

Views: 812

Answers (2)

Kenny Nguyen
Kenny Nguyen

Reputation: 44

For vagrant to boot up your virtual machine, it will have to ssh into it. If it cannot, it won't be able to carry out the command. This only happen when you create a complete new box. In case, it works in the past (meaning you already "vagrant up" before), and decides to be a jerk this time, then you may have to check the content of vagrantfile to see any misconfig.

Upvotes: 1

P3rishable
P3rishable

Reputation: 83

Try running vagrant up --debug to help you debug.

Upvotes: 2

Related Questions