I would like to install Influxdb via a repo, not by installing manually each release, so I tried to add a repo for it, as I used to do with Influxdb v1 (I just updated my server after a long while).
I followed the instructions provided but "apt list influx*" gave no results:
# apt list influx*
Listing... Done
so I adapted it to ubuntu, by browsing the repo myself, so I after cleaning up things I repeated except by:
changing from "-archive_compat" to "-archive", as recommended,
skipping verification of the signature because I couldn't find the value to compare the "-archive" against
change from debian to 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
and "apt update"
Now I get in /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
however the same result:
# apt list influx*
Listing... Done
If I check manually https://repos.influxdata.com/ubuntu/dists/jammy/stable/binary-amd64/Packages I find there are packages inside it!
Where is my mistake?