Install cassandra on ubuntu?

I already installed cassandra on ubuntu using wiki

The problem is that I cannot control which version to install and update in the function.

I want to be able to install a certain version of not only the latest, because I have a machine with 0.6.2, now I want another node, and I want to install 0.6.2.

How to install debian package for a specific version instead of the latest version?

+3
source share
2 answers

to install a specific version of cassandra you can do something like this:

In this case, I want to install cassandra 1.2.8

sudo apt-get clean

Sudo apt-get update

sudo apt-get install cassandra = 1.2.8

+3
source

- , , pinning. , ( ). , aptitude, .

, php . , , , /ppas, .list(sources.list.d).

+1

Source: https://habr.com/ru/post/1753774/


All Articles