InfluxDB 密钥问题导致 apt 更新期间出现 GPG 错误

InfluxDB 密钥问题导致 apt 更新期间出现 GPG 错误

如果我运行apt update,我会收到此错误:

W: An error occurred during the signature verification.
The repository is not updated and the previous index files will be used.
GPG error: https://repos.influxdata.com/ubuntu impish InRelease:
The following signatures couldn't be verified because the public key is not available:
NO_PUBKEY D8FF8E1F7DF8B07E

我读到我应该跑步

sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D8FF8E1F7DF8B07E

但这没用。顺便说一句,我收到警告,说 apt-key 已弃用。所以我找到了这一页在 influxdata.com 上解释如何配置新密钥;所有命令均无错误执行,但并不能解决问题 - 当我 时仍然出现相同的错误apt update

编辑:我正在运行 Ubuntu 22.04.2 LTS。

答案1

运行以下命令:

curl -fsSL https://repos.influxdata.com/influxdata-archive_compat.key | \
   gpg --dearmor | \
   sudo tee  /etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg > /dev/null

然后 apt update aso。

相关内容