Giter Site home page Giter Site logo

Comments (9)

SvenDowideit avatar SvenDowideit commented on August 20, 2024

can you please run

boot2docker delete

and then

boot2docker -v init - I'm not sure what is going on, but perhaps the logs can tell us more

from osx-installer.

josephschorr avatar josephschorr commented on August 20, 2024

Weird... the -v somehow fixed it. Strange, but it is working now, so I'll close the issue.

from osx-installer.

venkat9099 avatar venkat9099 commented on August 20, 2024

Installation failed on windows 8.1 for creating host only network interface using 1.0.1 Docker version.
I followed delete and init with -v option also
2014/06/25 11:41:48 Creating a new host-only network interface...
2014/06/25 11:41:48 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe
hostonlyif create
0%...
Progress state: E_FAIL
VBoxManage.exe: error: Failed to create the host-only adapter
VBoxManage.exe: error: Code E_FAIL (0x80004005) - Unspecified error (extended in
fo not available)
VBoxManage.exe: error: Context: "int __cdecl handleCreate(struct HandlerArg *,in
t,int *)" at line 66 of file VBoxManageHostonly.cpp
2014/06/25 11:41:57 Failed to create host-only network interface: exit status 1

from osx-installer.

smarigowda avatar smarigowda commented on August 20, 2024

I had the same issue and boot2docker -v init fixed it !

from osx-installer.

arnfox avatar arnfox commented on August 20, 2024

venkat9099,
I have windows 10 and I'm bumping to the same issue. "VBoxManage.exe: error: Failed to create the host-only adapter"
Have you managed to get over this problem?

from osx-installer.

dsw88 avatar dsw88 commented on August 20, 2024

I'm also having this issue on Windows 10. Doing a delete and then a "boot2docker -v init" didn't seem to fix the problem.

The verbose output gives this error:

2015/08/04 12:30:21 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe hostonlyif create
0%...
Progress state: E_FAIL
VBoxManage.exe: error: Failed to create the host-only adapter
VBoxManage.exe: error: Code E_FAIL (0x80004005) - Unspecified error (extended info not available)
VBoxManage.exe: error: Context: "enum RTEXITCODE __cdecl handleCreate(struct HandlerArg *)" at line 70 of file VBoxManageHostonly.cpp
error in run: Failed to initialize machine "boot2docker-vm": exit status 1

from osx-installer.

nijtmans avatar nijtmans commented on August 20, 2024

Stumbled on exactly the same in Windows 10:

Boot2Docker-cli version: v1.7.1
Git commit: 8fdc6f5
2015/08/04 18:57:25 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe showvminfo boot2docker-vm --machinereadable
2015/08/04 18:57:25 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe showvminfo boot2docker-vm --machinereadable
2015/08/04 18:57:25 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe list vms
2015/08/04 18:57:25 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe createvm --name boot2docker-vm --register
Virtual machine 'boot2docker-vm' is created and registered.
UUID: 856bed4b-1c48-49cc-b436-fd4fd5db4c9b
Settings file: 'C:\Users\Jan\VirtualBox VMs\boot2docker-vm\boot2docker-vm.vbox'
2015/08/04 18:57:25 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe showvminfo boot2docker-vm --machinereadable
2015/08/04 18:57:25 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe setextradata boot2docker-vm VBoxInternal/CPUM/EnableHVP 1
2015/08/04 18:57:25 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe modifyvm boot2docker-vm --firmware bios --bioslogofadein off --bioslogofadeout off --bioslogodisplaytime 0 --biosbootmenu disabled --natdnshostresolver1 off --natdnsproxy1 off --ostype Linux26_64 --cpus 2 --memory 2048 --vram 8 --acpi on --ioapic on --rtcuseutc on --cpuhotplug off --pae on --longmode on --hpet on --hwvirtex on --triplefaultreset off --nestedpaging on --largepages on --vtxvpid on --vtxux off --accelerate3d off --uart1 0x3F8 4 --uartmode1 server .\pipe\boot2docker-vm --boot1 dvd
2015/08/04 18:57:26 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe showvminfo boot2docker-vm --machinereadable
2015/08/04 18:57:26 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe modifyvm boot2docker-vm --nic1 nat --nictype1 virtio --cableconnected1 on
2015/08/04 18:57:26 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe modifyvm boot2docker-vm --natpf1 ssh,tcp,127.0.0.1,2022,,22
2015/08/04 18:57:26 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe list hostonlyifs
2015/08/04 18:57:26 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe list dhcpservers
2015/08/04 18:57:27 executing: C:\Program Files\Oracle\VirtualBox\VBoxManage.exe hostonlyif create
0%...
Progress state: E_FAIL
VBoxManage.exe: error: Failed to create the host-only adapter
VBoxManage.exe: error: Code E_FAIL (0x80004005) - Unspecified error (extended info not available)
VBoxManage.exe: error: Context: "int __cdecl handleCreate(struct HandlerArg *,int,int *)" at line 66 of file VBoxManageHostonly.cpp
error in run: Failed to initialize machine "boot2docker-vm": exit status 1

from osx-installer.

dsw88 avatar dsw88 commented on August 20, 2024

It turns out this is a bug in VirtualBox with Windows 10, so it's not directly a boot2docker problem. This issue has the details: https://www.virtualbox.org/ticket/14040.

Their fix isn't released yet, but you can download a test build at https://www.virtualbox.org/download/testcase/VirtualBox-5.0.1-101902-Win.exe. That build installed and fixed things for me on Windows 10, allowing me to use boot2docker again.

from osx-installer.

jsteffensen avatar jsteffensen commented on August 20, 2024

VirtualBox 5.0.1 fixed it on Win 10 for me. Thanks @dsw88

from osx-installer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.