2016-04-12 5 views
0

Ich bekomme diese Fehlermeldung, wenn ich versuche, in meinem git-bash vagrantieren.Erhalten Sie Timeout-Nachricht, wenn Sie versuchen, auf Windows 10 vagrant zu machen - aber keine Fehler

$ vagrant up 
Bringing machine 'default' up with 'virtualbox' provider... 
==> default: Importing base box 'laravel/homestead'... 
==> default: Matching MAC address for NAT networking... 
==> default: Checking if box 'laravel/homestead' is up to date... 
==> default: Setting the name of the VM: homestead-7 
==> default: Clearing any previously set network interfaces... 
==> default: Preparing network interfaces based on configuration... 
    default: Adapter 1: nat 
    default: Adapter 2: hostonly 
==> default: Forwarding ports... 
    default: 80 (guest) => 8000 (host) (adapter 1) 
    default: 443 (guest) => 44300 (host) (adapter 1) 
    default: 3306 (guest) => 33060 (host) (adapter 1) 
    default: 5432 (guest) => 54320 (host) (adapter 1) 
    default: 22 (guest) => 2222 (host) (adapter 1) 
==> default: Running 'pre-boot' VM customizations... 
==> 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 
the timeout ("config.vm.boot_timeout") value. 

Das Problem ist, dass ich laufen keine Fehler bekommen, und wenn ich in meiner Virtualbox GUI gehen, wird die VM!

Jeder, der das Gleiche erlebt hat, hat eine Lösung.

Es ist auf Windows 10, mit der neuesten Virtualbox und Vagrant.

Ich habe es gerade auf meinem Laptop zu Hause installiert und ich funktioniert gut, aber bei der Arbeit auf einer Arbeits-Domain wird es nicht, so kann nicht wirklich sehen, was hier falsch ist.

Antwort

0

Das ist mir passiert, als ich eine Windows-Box eingerichtet habe. Also würde ich prüfen, ob Virtualisierung im BIOS aktiviert ist. Wenn es deaktiviert ist, aktivieren Sie es. Versuchen Sie erneut zu booten.

+0

NEIN NEIN NEIN !! Ich bin dumm! Ich habe diese Vorschläge viele Male gelesen, aber anstatt ins BIOS zu gehen, um zu überprüfen, dass ich diese http://www.intel.com/content/www/us/en/support/processors/processor-utilities-and-programs verwendet habe /intel-processor-identification-utility.html Programm zu überprüfen, und es sagte ja. Also habe ich nicht gedacht, dass es dieses Problem war, aber nach deinem Vorschlag habe ich das BIOS-Ding gemacht und herausgefunden, dass es deaktiviert war !! Dumm faul mich, das kostet mich gerade 5 Stunden Haare ziehen und 2 saubere Fenster einbauen: -D Danke nochmals! –

Verwandte Themen