Docker hv-sock (vsudd) proxy is not available for windows

I have a docker 17.12.0-ce-win46 build installed on my laptop 10. Each time I run it, I get an error below ... I followed all the recommended solutions that I could find on the Internet, like solve this problem, but the problem persists.

Docker hv-sock proxy (vsudd) is not reachable

in Docker.Backend.ContainerEngine.Linux.ConnectToVsud (TaskCompletionSource`1 vmId) in C: \ gopath \ src \ github.com \ docker \ pinata \ win \ src \ Docker.Backend \ ContainerEngine \ Linux.cs: line 293 in Docker .Backend.ContainerEngine.Linux.DoStart (settings, String daemonOptions) in C: \ gopath \ src \ github.com \ docker \ pinata \ win \ src \ Docker.Backend \ ContainerEngine \ Linux.cs: line 260 in Docker.Backend .ContainerEngine.Linux.Start (settings, String daemonOptions) in C: \ gopath \ src \ github.com \ docker \ pinata \ win \ src \ Docker.Backend \ ContainerEngine \ Linux.cs: line 130 in Docker.Core.Pipe .NamedPipeServer. <> c__DisplayClass9_0.b__0 (Object [] parameters) in C: \ gopath \ src \ github.com \ docker \ pinata \ win \ src \ Docker.Core \ pipe \ NamedPipeServer.cs: line 47 in Docker.Core.Pipe. NamedPipeServer.RunAction (String, Object [] parameters) in C: \ gopath \ src \ github.com \ docker \ pinata \ win \ src \ Docker.Core \ pipe \ NamedPipeServer.cs: line 145

+4
source share
3 answers

You can return to the docker version 17.09.1.14687. 17.12.0-ce-win46 and 17.12.0-ce-win47 have this error.

+1
source

Here is what I did to fix the error for me. Go to the C: \ Users \ Public \ Public Documents \ Hyper-V directory, right-click the Hyper-V folder, select "Properties" and uncheck the "Read Only" and "Apply Changes" boxes. Then, on the Windows taskbar, right-click the red Docker icon or, if it is in hidden icons, select Finish, then restart it.

+1
source

Hyper-V PowerShell PowerShell .

:

PowerShell

Copy
Enable-WindowsOptionalFeature -Online -FeatureName:Microsoft-Hyper-V -All
, , PowerShell .

, .

Enable Hyper-V with CMD and DISM Deployment Image Maintenance and Management Tool (DISM) helps you customize your Windows and Windows images. Among numerous applications, DISM may include Windows features while the operating system is running.

To enable the Hyper-V role using DISM:

Open a PowerShell or CMD session as an administrator.

Enter the following command:

Powerhell

Copy
DISM /Online /Enable-Feature /All /FeatureName:Microsoft-Hyper-V

When the installation is complete, you need to restart the computer.

0
source

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


All Articles