Vagrant 1.9.7
Arch Linux
CentOS 6
Vagrant.configure("2") do |config|
config.vm.box = "centos/6"
end
The CentOS VM should be deployed successfully.
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'centos/6'...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'centos/6' is up to date...
==> default: Setting the name of the VM: test_default_1500486941857_98327
==> default: Clearing any previously set network interfaces...
==> default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
==> default: Forwarding ports...
default: 22 (guest) => 2222 (host) (adapter 1)
==> default: Booting VM...
There was an error while executing 'VBoxManage', a CLI used by Vagrant
for controlling VirtualBox. The command and stderr is shown below.
Command: ["startvm", "8a33f87e-d917-49a3-a808-7b73bfda4f0c", "--type", "headless"]
Stderr: VBoxManage: error: The virtual machine 'test_default_1500486941857_98327' has terminated unexpectedly during startup with exit code 1 (0x1)
VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component MachineWrap, interface IMachine
From the VirtualBox 5.1.24 changelog:
API: return the correct error code if powering up a VM fails
Non of my machines can handle nfs since update:
==> default: Mounting NFS shared folders...
first i tough its cause kernel 4.12 (which made problems with older virtualbox than 5.1.24) but same for 4.11 (ubuntu, kernel ppa)
I had the same problem, vagrant up stuck on "Mounting NFS shared folders" for too long.
I found the solution here in the forum. On my host maschine the vboxnet0 interface was down. You can start it with
sudo ip link set dev vboxnet0 up
On ArchLinux kernel 4.11.9
virtualbox 5.1.24
vagrant 1.9.7
I don't have any issues starting vagrant but my port forwarding was not working.
@dzschille thanks for referencing that forum post, that guy had my exact issue. Bringing up the vboxnet0 interface solved it for me.
@dzschille solution worked for me (Debian testing, VirtualBox 5.1.24 r117012 (Qt5.7.1), Vagrant 1.9.7)
Never had problem with vboxnet0 not being up. As soon as I downgrade to VirtualBox 5.1.22 everything works.
ifconfig vboxnet0
vboxnet0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
ether 0a:00:27:00:00:00 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
UPDATE: I reloaded the kernel modules that start with vbox, restarted virtualbox and now it works.
@dzschille thanks for your input, but i still hafe the nfs problem
==> default: Mounting NFS shared folders...
The following SSH command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!
mount -o vers=3 10.15.10.1:/home/schreiner/Documents/webpages/energycalculator2 /vagrant
Stdout from the command:
Stderr from the command:
mount.nfs: Connection timed out
@dominikzogg when you have started the VirtualBox Manager GUI, and than enter on your host:
ip link show dev vboxnet0
what is your output?
Also start the box with Vagrant debug mode:
vagrant up --debug
This way you will perhaps get a hint what's wrong.
@dzschille solution works great, but I have to do this everything I restart my machine.
Why is this not being loaded automatically?
Is there a solution for a permanent fix?
@dahousecat they are working on a fix: https://www.virtualbox.org/ticket/16911
@dzschille thanks for the link, ip link show dev vboxnet0 did not work. I've downgraded, so i will wait for virtualbox update
not a vagrant issue
seems a virtualbox 5.1.24 on linux issue
use 5.1.22 in th meantime and check when parched version is out.
What has worked for me was this update: https://www.virtualbox.org/wiki/Testbuilds. Following this thread https://www.virtualbox.org/ticket/16911 I upgraded vagrant to 1.9.7 and installed this build and it's working as before.
If it helps, I'm running LinuxMint 17.1
I'm going to lock this issue because it has been closed for _30 days_ โณ. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.
Most helpful comment
I had the same problem, vagrant up stuck on "Mounting NFS shared folders" for too long.
I found the solution here in the forum. On my host maschine the vboxnet0 interface was down. You can start it with
sudo ip link set dev vboxnet0 up