【2022/04/05 当前时间】在 Debian 9 上执行 apt-get update 命令时,会出现“无法连接到 deb.debian.org:80 (151.101.110.132)”的问题和解决方案
简要概述
在过去成功构建的Dockerfile(Debian 9)中,当添加并执行apt-get update时,会出现以下错误。
这是关于此事原因和对策的记录。
不同的人会有不同的原因,所以需要注意。
错误日志 (È cuò rì zhì)
Err:1 http://deb.debian.org/debian stretch/main amd64 python3-minimal amd64 3.5.3-1
Could not connect to debian.map.fastlydns.net:80 (151.101.74.132) 略
由于这个原因
由于在/etc/apt/sources.list中定义的URL上,stretch(Debian 9)的软件包列表已不存在。
# cat /etc/apt/sources.list
deb http://deb.debian.org/debian stretch main
deb http://security.debian.org/debian-security stretch/updates main
deb http://deb.debian.org/debian stretch-updates main
应对对策
将镜像网站“http://ftp.jp.debian.org”设为参考。
$ cat /etc/apt/sources.list
deb http://ftp.jp.debian.org/debian/ stretch main contrib non-free
deb http://ftp.jp.debian.org/debian/ stretch-proposed-updates main contrib non-free
deb http://ftp.jp.debian.org/debian/ stretch-updates main contrib
deb http://ftp.jp.debian.org/debian/ stretch-backports main contrib non-free
其他
在事前确认了正确配置了使用代理服务器。
相关文章