错误:无法检索http://repo.mysql.com/apt/debian/dists/buster/InRelease 403 Forbidden

错误:无法检索http://repo.mysql.com/apt/debian/dists/buster/InRelease 403 Forbidden

我正在mysql-server我的 Debian 10 上安装。

wget我在文件中使用了命令:/tmp ,然后sudo dpkg使用返回以下响应的命令:

 acelys @ uno-test-temp: / tmp $ sudo dpkg -i mysql-apt *
    (Reading database ... 46803 files and directories already installed.)
    Preparing to unpack mysql-apt-config_0.8.19-1_all.deb ...
    Unpacking mysql-apt-config (0.8.19-1) to (0.8.19-1) ...
    Setting up mysql-apt-config (0.8.19-1) ...
    Warning: apt-key should not be used in scripts (called from postinst maintainerscript of the package mysql-apt-config)
    OK

然后我输入命令:sudo apt update这是有错误的响应:

acelys @ uno-test-temp: / tmp $ sudo apt update
    Err: 1 http://repo.mysql.com/apt/debian buster InRelease
      403 Forbidden [IP: 23.57.81.191 80]
    Reached: 2 http://deb.debian.org/debian buster InRelease
    Achieved: 3 http://security.debian.org/debian-security buster / updates InRelease
    Reached: 4 http://deb.debian.org/debian buster-updates InRelease
    Reached: 5 https://packages.sury.org/php buster InRelease
    Reading Package Lists ... Done
    E: Unable to retrieve http://repo.mysql.com/apt/debian/dists/buster/InRelease 403 Forbidden [IP: 23.57.81.191 80]
    E: The http://repo.mysql.com/apt/debian buster InRelease repository is unsigned.
    N: Updates from such a repository cannot be done securely, and are therefore disabled by default.
    N: See the apt-secure (8) man pages for repository creation and user configuration details.

我在网上搜索了很多文章,他们都谈到对文件进行修改sources.list,但他们没有具体说明我应该做什么修改。

这是我的sources.list文件:

# deb cdrom:[Debian GNU/Linux 10.0.0 _Buster_ - Official amd64 DVD Binary-1 20190706-10:24]/ buster contrib main

#deb cdrom:[Debian GNU/Linux 10.0.0 _Buster_ - Official amd64 DVD Binary-1 20190706-10:24]/ buster contrib main

deb http://security.debian.org/debian-security buster/updates main contrib
deb-src http://security.debian.org/debian-security buster/updates main contrib

# buster
deb http://deb.debian.org/debian/ buster main
# deb-src http://deb.debian.org/debian/ buster main

# buster-updates, previously known as 'volatile'
deb http://deb.debian.org/debian/ buster-updates main
#deb-src http://deb.debian.org/debian/ buster-updates main contrib non-free

这是我的mysql.list文件:

### THIS FILE IS AUTOMATICALLY CONFIGURED ###
# You may comment out entries below, but any other modifications may be lost.
# Use command 'dpkg-reconfigure mysql-apt-config' as root for modifications.
deb http://repo.mysql.com/apt/debian/ buster mysql-apt-config
deb http://repo.mysql.com/apt/debian/ buster mysql-8.0
deb http://repo.mysql.com/apt/debian/ buster mysql-tools
#deb http://repo.mysql.com/apt/debian/ buster mysql-tools-preview
deb-src http://repo.mysql.com/apt/debian/ buster mysql-8.0 

答案1

这看起来像是存储库服务器上配置错误的典型案例。

$ nslookup repo.mysql.com
[...]

Non-authoritative answer:
repo.mysql.com  canonical name = repo.mysql.com.edgekey.net.
repo.mysql.com.edgekey.net      canonical name = e7528.d.akamaiedge.net.
Name:   e7528.d.akamaiedge.net
Address: 23.43.108.232

$ nslookup 23.57.81.191
191.81.57.23.in-addr.arpa       name = a23-57-81-191.deploy.static.akamaitechnologies.com.

它看起来repo.mysql.com是由 Akamai 的内容交付网络提供服务,因此在不同位置和不同时间对其进行 DNS 查询将收到不同的 IP 地址作为响应,因为 Akamai 尝试从最近的可用服务器提供内容,该服务器有能力提供它。

不过,就您的情况而言,Akamai 将您的请求定向到的服务器似乎有故障。也许它在尚未完全完成镜像内容时已被允许响应客户端请求,或者可能出现其他问题。

您可能想检查Akamai 服务状态页面如果问题似乎不存在,请考虑联系阿卡迈技术支持报告问题。

相关内容