执行docker命令,出现Cannot connect to the Docker daemon at unix:///var/run/docker.sock.

执行docker ps命令,出现:Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?

前提:Docker本身已经安装正常。
原因:因为docker服务没有启动,所以在相应的/var/run/ 路径下找不到docker的进程。
解决方案:执行service docker start 命令,启动docker服务,再执行docker ps就可以看到问题已经修复。

你可能感兴趣的:(Docker,docker,容器,运维)