0


告别Docker请求超时:一步步排查与解决方案

目录

docker运行系统

系统:Ubuntu

问题现象

在ubuntu系统上面,安装完Docker后,尝试运行

docker run hello-world

来测试docker安装是否成功的时候,报错,报错信息如下:

docker: Error response from daemon: Get "https://registry-1.docker.io/v2/": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers).
See 'docker run --help'.

解决方案

对于这种连接超时的问题,网上有很多的解决方案,我也根据网上的解决方案尝试了,但是有些处理方案不起作用,也在下面处理方案列出,希望对你们有所帮助。

1. 修改docker镜像源 (本地修改后不行)

使用命令

sudo vim /etc/docker/daemon.json

(若文件不存在,会自动创建一个新的

daemon.json

文件),替换文件中的镜像源信息

{"registry-mirrors":["https://docker.registry.cyou",
      "https://docker-cf.registry.cyou",
      "https://dockercf.jsdelivr.fyi",
      "https://docker.jsdelivr.fyi",
      "https://dockertest.jsdelivr.fyi",
      "https://mirror.aliyuncs.com",
      "https://dockerproxy.com",
      "https://mirror.baidubce.com",
      "https://docker.m.daocloud.io",
      "https://docker.nju.edu.cn",
      "https://docker.mirrors.sjtug.sjtu.edu.cn",
      "https://docker.mirrors.ustc.edu.cn",
      "https://mirror.iscas.ac.cn"]}

修改后需重新docker服务

sudo systemctl daemon-reload
sudo systemctl restart docker

检查是否生效:
查看docker系统信息 docker info,查看 registry mirror 中刚配置的内容地址。

2. 修改DNS服务配置

  1. 查看DNS服务配置,/etc/resolv.conf
cat /etc/resolv.conf
  1. 查看nameserver后面IP地址信息,或者显示的IP地址有问题,可以尝试修改该文件。
nameserver 114.114.114.114
nameserver 8.8.8.8

3. 获取可用的镜像源(成功拉取镜像源)

以上方法都不起作用后,找了很久,终于找到一个可用的镜像源

https://docker.rainbond.cc/

将上述信息添加到

damon.json

文件中,然后重启服务,

docker run hello-world

尝试拉取镜像,成功。

Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
c1ec31eb5944: Pull complete 
Digest: sha256:d211f485f2dd1dee407a80973c8f129f00d54604d2c90732e8e320e5038a0348
Status: Downloaded newer image for hello-world:latest

Hello from Docker!
This message shows that your installation appears to be working correctly.

To generate this message, Docker took the following steps:
 1. The Docker client contacted the Docker daemon.
 2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
    (amd64)3. The Docker daemon created a new container from that image which runs the
    executable that produces the output you are currently reading.
 4. The Docker daemon streamed that output to the Docker client, which sent it
    to your terminal.

To try something more ambitious, you can run an Ubuntu container with:
 $ docker run -it ubuntu bash

Share images, automate workflows, and more with a free Docker ID:
 https://hub.docker.com/

For more examples and ideas, visit:
 https://docs.docker.com/get-started/

总结:
在这篇博客中,提供了一系列处理Docker拉取镜像超时的实用的解决方案。我们首先分析了网络连接问题、DNS配置错误以及代理设置等可能导致该错误的因素。接着,我们详细讲解了如何通过调整Docker配置文件、修改DNS选项以及检查系统代理设置等方法来解决这一问题。
通过这些步骤,相信你已经能够有效地解决“Client.Timeout exceeded while awaiting headers”错误,让你的Docker容器顺利运行。掌握这些技巧,不仅能帮助你处理当前的问题,也为你在未来面对类似挑战时提供了有力的工具。
希望这篇教程对你有所帮助,助你在Docker的使用过程中更加得心应手。谢谢阅读,期待你的反馈!😁

标签: docker 容器 运维

本文转载自: https://blog.csdn.net/Crime_man/article/details/143468533
版权归原作者 Crime_man 所有, 如有侵权,请联系我们删除。

“告别Docker请求超时:一步步排查与解决方案”的评论:

还没有评论