Vagrant up freezes when loading VM

This is the first time I run a tramp since upgrading to OS X 10.10 (beta), so it can be connected right there. --version - 1.4.3, VirtualBox - 4.3.0, and when I start with VAGRANT_LOG=DEBUG I get a mess below. Vagrantfile couldn't be simpler:

 # -*- mode: ruby -*- # vi: set ft=ruby : VAGRANTFILE_API_VERSION = "2" Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| config.vm.box = "ubuntu-14.04" end 

I am stuck here with the output below:

 [default] -- 22 => 2222 (adapter 1) INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "76ef7d0b-2b19-4b12-9a1a-b5e0654a143f", "--natpf1", "ssh,tcp,127.0.0.1,2222,,22"] DEBUG subprocess: Command not in installer, not touching env vars. DEBUG subprocess: Selecting on IO DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SetHostname:0x00000100a219c0> INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::SaneDefaults:0x00000100a21998> INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "storagectl", "76ef7d0b-2b19-4b12-9a1a-b5e0654a143f", "--name", "SATA Controller", "--hostiocache", "on"] DEBUG subprocess: Command not in installer, not touching env vars. DEBUG subprocess: Selecting on IO DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "76ef7d0b-2b19-4b12-9a1a-b5e0654a143f", "--rtcuseutc", "on"] DEBUG subprocess: Command not in installer, not touching env vars. DEBUG subprocess: Selecting on IO DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO sanedefaults: Automatically figuring out whether to enable/disable NAT DNS proxy... INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "modifyvm", "76ef7d0b-2b19-4b12-9a1a-b5e0654a143f", "--natdnsproxy1", "on"] DEBUG subprocess: Command not in installer, not touching env vars. DEBUG subprocess: Selecting on IO DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000 DEBUG subprocess: Exit status: 0 INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Customize:0x00000100a53dd0> INFO warden: Calling IN action: #<VagrantPlugins::ProviderVirtualBox::Action::Boot:0x00000100a53da8> INFO interface: info: Booting VM... [default] Booting VM... INFO subprocess: Starting process: ["/usr/bin/VBoxManage", "startvm", "76ef7d0b-2b19-4b12-9a1a-b5e0654a143f", "--type", "headless"] DEBUG subprocess: Command not in installer, not touching env vars. DEBUG subprocess: Selecting on IO 

What is playing here? Version compatibility issues or something else?

+5
source share
2 answers

After the answer here, I did not post on Twitter. A friend of mine indicated that the version of VirtualBox could be the cause.

Updates in VirtualBox were not updated, so I:

  • Used by AppCleaner to remove the old version.
  • Download the latest version of VirtualBox
  • vagrant up without errors

FYI to others who expect VirtualBox to update as expected.

+10
source

The tramp showed me the same behavior today. However, a simple reboot of OSX fixed the problem. It is possible to try something before reinstalling VirtualBox.

Greetings

Jens

0
source

Source: https://habr.com/ru/post/1202638/


All Articles