2014-09-16 22 views
5

Questa è la prima volta che eseguo il vagabondo dopo l'aggiornamento a OS X 10.10 (Beta), quindi potrebbe essere collegato proprio lì. il --version è 1.4.3, VirtualBox è alla 4.3.0 e quando viene eseguito con VAGRANT_LOG=DEBUG, ottengo il pasticcio in fondo. Il Vagrantfile non potrebbe essere più semplice:si blocca su all'avvio 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 

mi si blocca qui con l'uscita di seguito:

[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 

Cosa c'è in gioco qui? Problemi di compatibilità della versione o qualcos'altro?

+0

anche FYI: ho controllato lo stato vagabonda e vedere lo stato della macchina virtuale come '' poweroff' & errori ssh' vaganti fuori. Quindi non è decisamente "su". – mbb

risposta

10

Dopo nessuna risposta, ho postato su Twitter. Un mio amico ha sottolineato che la versione di VirtualBox potrebbe essere la causa.

Aggiornamenti in VirtualBox non è stato l'aggiornamento, in modo da:

  • Utilizzato AppCleaner per rimuovere la vecchia versione
  • scaricato l'ultima VirtualBox
  • Re-ran vagrant up senza errori

FYI ad altri che si aspettano che VirtualBox si aggiorni come previsto.

0

Vagrant ha mostrato lo stesso comportamento oggi per me. Tuttavia, un semplice riavvio di OSX ha risolto il problema. Forse qualcosa da provare prima di reinstallare VirtualBox.

Acclamazioni

Jens

+0

Grazie per il suggerimento ma questo non ha aiutato. –