The boot2docker shellinit command was in the error "Socket request failed: exit status 255"

Boot2docker is installed on OSX in accordance with the instructions of http://boot2docker.io/ . After that, they launched the application. In the terminal, the boot2docker shellinit command started and ended up selecting this error "Socket request error: exit status 255". Tried boot2docker stop ---> delete ---> download ---> init ---> up. It did not help. The version I used is v1.3.1. Any ideas why this might be unsuccessful? Thank you

+2
source share
2 answers

Finally, this solution worked for me. It looks like our hosts file has a local host assigned to 127.0.0.1 (location is / etc / hosts). The next line should be in / etc / hosts

127.0.0.1 localhost

And do the following. At the end, assign the variables as the console shows.

boot2docker init boot2docker download boot2docker up

+1
source

try to see the actual error on the virtual box screen.

For me, this was because visualization was not included in my biography. I could see that "this kernel requires an x86-64 processor, but it only detects an i686 CPU that is unable to load" an error in the virtual window screen

in bios, security> visualization> enable> save and exit

Good luck.

0
source

Source: https://habr.com/ru/post/1210536/


All Articles