We use Cassandra 3.11.13 and have found that the download for ubuntu returns a 404 when installing https://downloads.apache.org/cassandra/debian/pool/main/c/cassandra/cassandra_3.11.13_all.deb
Added the repository for cassandra to ubuntu then
sudo apt-get install cassandra
we get a 404 on the .deb package
There are no version 3 packages in https://downloads.apache.org/cassandra/debian/pool/main/c/cassandra/
2
Answers
From the looks of it we need to use archive instead of www so that it gets the deb file from the archive
echo "deb http://archive.apache.org/dist/cassandra/debian 311x main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
It appears you are still using the old source for the Cassandra packages.
Last year (July 2022), we moved the Debian and RPM repositories from
downloads.apache.org
to Apache’s JFrog Artifactory server (CASSANDRA-17748).If you have a look at the official Apache Cassandra Download page, there is a message that warns you about it:
We also announced the change in Changelog #18 and Changelog #19.
The new repository URLs are:
https://debian.cassandra.apache.org
https://redhat.cassandra.apache.org
Specifically for C* 3.11.13:
Please make sure you update your configuration to use the new sources. Cheers!