侧边栏壁纸
博主头像
进一步,海阔天空 博主等级

进一步,海阔天空

  • 累计撰写 149 篇文章
  • 累计创建 20 个标签
  • 累计收到 7 条评论

目 录CONTENT

文章目录

Docker无法启动时的错误排查

海阔天空
2022-05-28 / 0 评论 / 0 点赞 / 107 阅读 / 0 字

运行命令journalctl -eu docker,查看错误原因,例如:

root@fitit100_01:~# journalctl -eu docker
May 11 01:34:26 fitit100_01 systemd[1]: Starting Docker Application Container Engine...
May 11 01:34:26 fitit100_01 dockerd[2869]: unable to configure the Docker daemon with file /etc/docker/daemon.json: EOF
May 11 01:34:26 fitit100_01 systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE
May 11 01:34:26 fitit100_01 systemd[1]: docker.service: Failed with result 'exit-code'.
May 11 01:34:26 fitit100_01 systemd[1]: Failed to start Docker Application Container Engine.
May 11 01:34:28 fitit100_01 systemd[1]: docker.service: Scheduled restart job, restart counter is at 2.
May 11 01:34:28 fitit100_01 systemd[1]: Stopped Docker Application Container Engine.
May 11 01:34:28 fitit100_01 systemd[1]: Starting Docker Application Container Engine...
May 11 01:34:28 fitit100_01 dockerd[2874]: unable to configure the Docker daemon with file /etc/docker/daemon.json: EOF
May 11 01:34:28 fitit100_01 systemd[1]: docker.service: Main process exited, code=exited, status=1/FAILURE
May 11 01:34:28 fitit100_01 systemd[1]: docker.service: Failed with result 'exit-code'.
May 11 01:34:28 fitit100_01 systemd[1]: Failed to start Docker Application Container Engine.
May 11 01:34:30 fitit100_01 systemd[1]: docker.service: Scheduled restart job, restart counter is at 3.
May 11 01:34:30 fitit100_01 systemd[1]: Stopped Docker Application Container Engine.
May 11 01:34:30 fitit100_01 systemd[1]: docker.service: Start request repeated too quickly.
May 11 01:34:30 fitit100_01 systemd[1]: docker.service: Failed with result 'exit-code'.
May 11 01:34:30 fitit100_01 systemd[1]: Failed to start Docker Application Container Engine.

可以看到daemon.json文件有误,修改后重启docker即可。

0

评论区