#1、在docker拉取镜像后启动不起来
“Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the Docker daemon running?”
此错误的原因包括:
(1)The Docker daemon is not running. Docker守护程序未运行
(2)Docker doesn’t shutdown cleanly. Docker无法完全关闭。
(3)Lack of root privileges to start the docker service. 缺少启动docker服务的root权限。
解决方案:
方法一:查看 /var/run/docker.dock
文件是否变成目录,如果是就删除该目
rm -rf /var/run/docker.sock/
然后重启docker
systemctl restart docker
方法二:检查docker是否在运行文章来源:https://www.toymoban.com/news/detail-768697.html
systemctl status docker
如果 Docker 未运行,你可以使用以下命令启动 Docker 服务文章来源地址https://www.toymoban.com/news/detail-768697.html
systemctl start docker
到了这里,关于docker中“Cannot connect to the Docker daemon at .............Is the Docker daemon running?” 解决办法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!