March 2018
Beginner to intermediate
308 pages
8h 23m
English
If you are using a Debian flavor of Linux, such as Ubuntu, you can install via the advanced packaging tool (APT).[2] Start by adding the Apache repository to APT's list of sources. This command will add the repository for Cassandra 3.10:
echo "deb http://www.apache.org/dist/cassandra/debian 310x main" | sudo tee -a /etc/apt/sources.list.d/cassandra.sources.list
Next, pull down the repository keys and add them to APT's list of keys:
curl https://www.apache.org/dist/cassandra/KEYS | sudo apt-key add -
Once that is done, update via apt-get and install:
sudo apt-get updatesudo apt-get install cassandra
Be aware that this method will install Cassandra as a service, and start it. By default, Cassandra will start with ...
Read now
Unlock full access