我尝试设置 apt-cacher-ng 来缓存本地网络的所有 apt 包。但是使用 graylog 存储库时我遇到了一些麻烦。
系统:Debian 9,带有 apt 1.4.0 和 apt-cacher-ng 2-2
在服务器上,我刚刚配置了 apt 以使用 apt-cacher 服务器作为代理(这是唯一具有互联网连接的服务器),在 /etc/apt/apt.conf.d/01proxy 中有一行:
Acquire::http { Proxy "10.10.10.10:3142"; };
现在,所有 apt-get 更新和升级都从 apt-cacher 服务器获取软件包。这很好用。此外,我还可以像手册中所述那样,在 URL 中使用 HTTPS/// 来使用 https 存储库。
source.list 如下所示:
deb http://HTTPS///artifacts.elastic.co/packages/5.x/apt stable main
deb http://repo.mongodb.org/apt/debian stretch/mongodb-org/4.0 main
deb http://HTTPS///packages.graylog2.org/repo/debian/ stable 2.5
服务器上“apt-get update”的输出以以下内容结束:
Err:13 http://HTTPS///packages.graylog2.org/repo/debian stable/2.5 amd64 Packages 406 Not Acceptable
Ign:14 http://HTTPS///packages.graylog2.org/repo/debian stable/2.5 all Packages Reading package lists...
W: The repository 'http://HTTPS///packages.graylog2.org/repo/debian stable Release' does not have a Release file.
E: Failed to fetch http://HTTPS///packages.graylog2.org/repo/debian/dists/stable/2.5/binary-amd64/Packages 406 Not Acceptable
E: Some index files failed to download. They have been ignored, or old ones used instead.
在 apt-cacher-ng 日志中,错误是:
1548752476|I|224|10.10.10.10|packages.graylog2.org/repo/debian/dists/stable/2.5/binary-all/Packages [HTTP error, code: 406]
1548752476|E|237|10.10.10.10|packages.graylog2.org/repo/debian/dists/stable/2.5/binary-all/Packages [HTTP error, code: 406]
当我在/etc/apt-cacher-ng/acng.conf,流量不会被缓存,但更新将正常工作。这不是这里的目标,但表明网络流量应该在我的网站上正常工作。如果不需要缓存或缓存是可选的,则可以使用此方法:
PassThroughPattern: (packages\.graylog2\.org|graylog2-package-repository\.s3\.amazonaws\.com):443$
非常感谢您的帮助。
答案1
您尝试与 apt-cacher-ng 一起使用的 repo 是https://packages.graylog2.org/repo/debian/
,因此您创建了如下 sources.list:
deb http://HTTPS///packages.graylog2.org/repo/debian/ stable 2.5
问题是https://packages.graylog2.org/repo/debian/
是错误的 URL。正确的 URL 是https://packages.graylog2.org/debian
。
因此你的源行应该如下所示:
deb http://HTTPS///packages.graylog2.org/debian stable 2.5