vagrant up
Bringing machine ‘default’ up with ‘virtualbox’ provider…
==> default: Importing base box ‘hashicorp/bionic64’…
==> default: Matching MAC address for NAT networking…
==> default: Checking if box ‘hashicorp/bionic64’ version ‘1.0.282’ is up to date…
==> default: Setting the name of the VM: test_default_1581336172268_28420
==> default: Clearing any previously set network interfaces…
==> default: Preparing network interfaces based on configuration…
default: Adapter 1: nat
default: Adapter 2: intnet
==> default: Forwarding ports…
default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Booting VM…
==> default: Waiting for machine to boot. This may take a few minutes…
default: SSH address: 127.0.0.1:2222
default: SSH username: vagrant
default: SSH auth method: private key
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
When you bring up the vm with Vagrant, are you able to access it through the VirtualBox GUI? It’s possible the machine might not have enough resources to come up, and that’s’ why it’s timing out. If you can log into the machine through the GUI though, you might be able to see what’s going wrong…like checking to see if sshd is running and available, or if it has no networking at all.
@rahulkumartandf - If you could, please try the suggestions below as I believe they will get you closer to solving why your machine is failing to bring up that Vagrant box. Thanks.