关于今天使用Docker时报了以下错误:
[centos@localhost ~]$ docker ps
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?
分析报错的原因:
报错的翻译:无法连接到 unix:///var/run/docker.sock 上的 Docker 守护程序。 docker 守护进程是否正在运行?
通过翻译完报错,可以看出报错的原因是因为docker的服务没启动
解决方法:
1、首先启动docker服务
[root@localhost /]# systemctl start docker
2、查看docker服务当前状态
[root@localhost /]# systemctl status docker
就此,以上的报错就成功解决!
开机自启动Docker
为了避免以上的问题重复出现,可以设置docker开启自启动!
[root@localhost /]# systemctl enable docker
希望以上的总结可以帮助有同类问题的小伙伴们,若有不严谨的地方,请各位小伙伴在评论区指正,共同学习!!!文章来源:https://www.toymoban.com/news/detail-607942.html
参考文章:https://blog.csdn.net/LIFENG0402/article/details/117930091文章来源地址https://www.toymoban.com/news/detail-607942.html
到了这里,关于关于:Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!