Docker Failed to get IP address: ssh exit status

I am using Oracle VM VurtualBox version 5.1.18

Windows 10 version 64bit and Docker Quick Start Terminal

I installed docker terminal and tried to start it. I received this message.

enter image description here

So, I ran it again, and I received this message.

enter image description here

So, when I tried the command "$ docker-machine ls", the following message was printed.

NAME ACTIVE DRIVER STATE URL SWARM DOCKER ERRORS default * virtualbox Running Unknown ssh command error: command : ip addr show err : exit status 255 output : 

To solve this problem, I tried the following command.

 $ Docker-machine rm default $ Docker-machine create --driver virtualbox default 

However, the same phenomenon is repeated.

+7
linux windows boot2docker
source share
1 answer

Have you installed ProxyCap?

thanks to @alastairtree , he reminded me that ProxyCap will make a VirtualBox error when setting up port forwarding. If you check the VirtualBox log, the path to the log file is: C:\Users\demo\.docker\machine\machines\default\default\Logs\VBox.log

You may find the error message supR3HardenedErrorV: supR3HardenedMonitor_LdrLoadDll: rejecting 'C:\windows\system32\pcapwsp.dll': rcNt=0xc0000190

pcapwsp.dll is part of ProxyCap, after removing ProxyCap everything is fine

0
source share

All Articles