最终解决办法
错误分析
Failed to start Docker Application Container Engine
此LINUX的内核中的SELINUX不支持 OVERLAY2 GRAPH DRIVER
要么启动一个新内核
要么就在DOCKER里禁用SELINUX,设置–SELINUX-ENABLED=FALSE
vim /etc/sysconfig/docker
systemctl restart docker
错误尝试
一、卸载重新安装docker
yum remove docker-* -y
yum install docker
systemctl start docker
systemctl status docker
二、添加daemon.json
vim /etc/docker/daemon.json
{"registry-mirrors": ["https://registry.docker-cn.com"]}
systemctl daemon-reload
systemctl restart docker
文章来源:https://www.toymoban.com/news/detail-608441.html
以上两步都进行尝试,并配置好后,还是不行,则使用最终的方法文章来源地址https://www.toymoban.com/news/detail-608441.html
到了这里,关于(亲测有效)Failed to start Docker Application Container Engine的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!