博文

目前显示的是 八月, 2019的博文

远程连接Windows虚机登录失败:An authentication error has occurred

图片
This could be due to CredSSP encryption oracle remediation 这是由于Windows的安全补丁引起的。简单来说就是连接的双方有一方没有打全补丁。所以解决的方法就是用自动更新打补丁...

docker for windows的问题:error during connect

在win10上安装了docker for windows后,执行docker命令报错: PS C:\Users\u6079532> docker ps error during connect: Get http://%2F%2F.%2Fpipe%2Fdocker_engine/v1.39/containers/json: open //./pipe/docker_engine: The system cannot find the file specified. In the default daemon configuration on Windows, the docker client must be run elevated to connect. This error may also indicate that the docker daemon is not running. 解决方法: https://github.com/docker/for-win/issues/1825 PS C:\Users\u6079532> cd "C:\Program Files\Docker\Docker" PS C:\Program Files\Docker\Docker> ./DockerCli.exe -SwitchDaemon 再检查,成功 PS C:\Program Files\Docker\Docker> docker ps CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS      ...