Cannot connect to the Docker daemon. Is the docker daemon running on this host

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Cannot connect to the Docker daemon. Is the docker daemon running on this host相关的知识,希望对你有一定的参考价值。

查看docker version的时候出现Cannot connect to the Docker daemon. Is the docker daemon running on this host

原因:当前登陆的用户权限不够

两个解决方法:

1 使用sudo

sudo docker version

 

2 添加当前用户到docker group

sudo usermod -aG docker $USER

  

学习的时候最好是使用第二种,稍微方便一点,不用多敲sudo

以上是关于Cannot connect to the Docker daemon. Is the docker daemon running on this host的主要内容,如果未能解决你的问题,请参考以下文章