Created
August 20, 2015 12:24
-
-
Save mroth/3f9e2e141745f953178c to your computer and use it in GitHub Desktop.
docker-machine create error
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ docker -v | |
Docker version 1.8.1, build d12ea79 | |
$ docker-machine -v | |
docker-machine version 0.4.1 (HEAD) | |
$ docker-machine create -d virtualbox devvb | |
Creating VirtualBox VM... | |
Creating SSH key... | |
Starting VirtualBox VM... | |
Error creating machine: exit status 1 | |
You will want to check the provider to make sure the machine and associated resources were properly removed. | |
$ docker-machine create -d vmwarefusion devvm | |
Creating SSH key... | |
Creating VM... | |
Starting devvm... | |
Waiting for VM to come online... | |
Error creating machine: Machine didn't return an IP after 120 seconds, aborting | |
You will want to check the provider to make sure the machine and associated resources were properly removed. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VirtualBox VM 5.0.2 r102096 darwin.amd64 (Aug 13 2015 18:38:03) release log | |
00:00:00.035033 Log opened 2015-08-20T12:17:55.276622000Z | |
00:00:00.035034 Build Type: release | |
00:00:00.035045 OS Product: Darwin | |
00:00:00.035050 OS Release: 14.5.0 | |
00:00:00.035055 OS Version: Darwin Kernel Version 14.5.0: Wed Jul 29 02:26:53 PDT 2015; root:xnu-2782.40.9~1/RELEASE_X86_64 | |
00:00:00.035143 DMI Product Name: MacBookPro12,1 | |
00:00:00.035189 DMI Product Version: 1.0 | |
00:00:00.035195 Host RAM: 16384MB total, 7593MB available | |
00:00:00.035197 Executable: /Applications/VirtualBox.app/Contents/MacOS/VBoxHeadless | |
00:00:00.035197 Process ID: 12545 | |
00:00:00.035198 Package type: DARWIN_64BITS_GENERIC | |
00:00:00.037778 Installed Extension Packs: | |
00:00:00.037787 None installed! | |
00:00:00.038572 Console: Machine state changed to 'Starting' | |
00:00:00.057784 SUP: Loading failed for VMMR0.r0 (/Applications/VirtualBox.app/Contents/MacOS/VMMR0.r0) rc=VERR_VMM_SMAP_BUT_AC_CLEAR | |
00:00:00.059225 PDMLdr: pdmR3LoadR0U: pszName="VMMR0.r0" rc=VERR_VMM_SMAP_BUT_AC_CLEAR szErr="SUPR3LoadModule: supLoadModule returned VERR_VMM_SMAP_BUT_AC_CLEAR" | |
00:00:00.059236 VMSetError: /Users/vbox/tinderbox/mac-rel/src/VBox/VMM/VMMR3/VM.cpp(595) int vmR3CreateU(UVM*, uint32_t, int (*)(UVM*, VM*, void*), void*); rc=VERR_VMM_SMAP_BUT_AC_CLEAR | |
00:00:00.059242 VMSetError: Failed to load VMMR0.r0 | |
00:00:00.059317 ERROR [COM]: aRC=NS_ERROR_FAILURE (0x80004005) aIID={872da645-4a9b-1727-bee2-5585105b9eed} aComponent={ConsoleWrap} aText={Failed to load VMMR0.r0 (VERR_VMM_SMAP_BUT_AC_CLEAR)}, preserve=false aResultDetail=0 | |
00:00:00.059861 Console: Machine state changed to 'PoweredOff' | |
00:00:00.062293 Power up failed (vrc=VERR_VMM_SMAP_BUT_AC_CLEAR, rc=NS_ERROR_FAILURE (0X80004005)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment