我想通过存储库安装 Influxdb,而不是手动安装每个版本,所以我尝试为其添加一个存储库,就像我以前对 Influxdb v1 所做的那样(我刚刚在很长一段时间后更新了我的服务器)。
我按照提供的说明进行操作,但“apt list influx*”没有给出任何结果:
# apt list influx*
Listing... Done
所以我通过自己浏览存储库将其适应 ubuntu,所以我在清理了我重复的内容后,除了:
按照建议从“-archive_compat”更改为“-archive”,
跳过签名验证,因为我找不到与“-archive”进行比较的值
从 Debian 更改为 ubuntu
wget -q https://repos.influxdata.com/influxdata-archive.key cat influxdata-archive.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdata-archive.gpg > /dev/null echo 'deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive.gpg] https://repos.influxdata.com/ubuntu jammy stable' | sudo tee /etc/apt/sources.list.d/influxdata.list
和“apt更新”
现在我进入/etc/apt/sources.list.d/influxdata.list:
deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive.gpg] https://repos.influxdata.com/ubuntu jammy stable
但结果相同:
# apt list influx*
Listing... Done
如果我手动检查https://repos.influxdata.com/ubuntu/dists/jammy/stable/binary-amd64/Packages我发现里面有包!
我的错误在哪里?