2014-09-16 22 views
5

Po raz pierwszy używam vagrant po uaktualnieniu do OS X 10.10 (Beta), więc może być podłączony właśnie tutaj. --version to 1.4.3, VirtualBox to 4.3.0, a gdy uruchomię go z VAGRANT_LOG=DEBUG, dostaję bałagan na dole. Vagrantfile nie może być bardziej prosty:vagrant up zawiesza się przy uruchamianiu VM

# -*- 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 utknąć tu z poniższej wyjścia:

[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 

Co znajduje się tu w grę? Problemy ze zgodnością wersji lub coś innego?

+0

także FYI: Sprawdziłem stan Vagrant i zobaczyć stan VM jako '' wędrujących poweroff' & błędów ssh' zewnątrz. Więc zdecydowanie nie jest "up". – mbb

Odpowiedz

10

Po braku odpowiedzi, opublikowałem na Twitterze. Mój przyjaciel wskazał, że przyczyną może być wersja VirtualBox.

Aktualizacje w VirtualBox nie było aktualizacji, więc:

  • Używane AppCleaner usunąć starą wersję
  • Pobrano najnowszy VirtualBox
  • Re-ran vagrant up bezbłędnie

FYI dla innych, którzy oczekują, że VirtualBox zaktualizuje się zgodnie z oczekiwaniami.

0

Vagrant pokazał mi dzisiaj to samo zachowanie. Jednak prosty restart systemu OSX rozwiązał problem. Może coś do zrobienia przed reinstalacją VirtualBox.

Cheers

Jens

+0

Dzięki za podpowiedź, ale to nie pomogło. –

Powiązane problemy