docker容器非正常关闭造成启动失败处理
转载自docker镜像container非正常关闭造成启动失败处理非正常关闭,如 systemctl stop docker 、systemctl restart docker 等操作。例如容器id为 3c252b492c5cdocker stop 3c252b492c5c停止失败强制结束,此时显示运行中却无法登录报错如下Error response from daemon: m...
·
转载自docker镜像container非正常关闭造成启动失败处理
非正常关闭,如 systemctl stop docker 、systemctl restart docker 等操作。
例如容器id为 3c252b492c5c
docker start 3c252b492c5c 启动失败 强制结束
报错如下
Error response from daemon: mkdir /var/run/docker/libcontainerd/containerd/3c252b492c5c697ac06a1e2b708dc679b31765f360f2aa185cebb2a4f298d90d: file exists
Error: failed to start containers: 3c252b492c5c
ps -aux|grep 3c252b492c5c 查看CONTAINER对应的进程id为17933
kill -9 17933 强制杀掉进程,用kill无法杀死
docker start 3c252b492c5c 启动成功
更多推荐
已为社区贡献1条内容
所有评论(0)