Linux - How to install cassandra on centos, Second generation distributed database

How to install cassandra on centos

Cassandra is a highly scalable, eventually consistent, distributed, structured key-value store. It's an alternative to SQL if you don't need relational data structures. The best part is it's super fast, and distributed.

1.Necessary Modules For cassandra server.
yum -y install gcc-c++ make cmake python-devel bzip2-devel zlib-devel log4cpp-devel git git-core cronolog google-perftools-devel

yum -y install readline-devel ncurses-devel libtool autoconf expat libevent-devel flex byacc expat-devel 

2. Download and install latest SUN JDK binary installer from the link.
http://www.oracle.com/technetwork/java/javase/downloads/index.html and install it.

3.Download the latest Cassandra version from the link.
http://cassandra.apache.org/download/
wget
http://apache.cyberuse.com//cassandra/0.8.6/apache-cassandra-0.8.6-bin.tar.gz

tar -zxvf apache-cassandra-0.8.6-bin.tar.gz

cp -rf apache-cassandra-0.8.6 /usr/local/cassandra

4.After completing the cassandra installation ,you can start the cassandra
/usr/local/cassandra/bin/cassandra -f &

The topic on Linux - How to install cassandra on centos is posted by - Math

Hope you have enjoyed, Linux - How to install cassandra on centosThanks for your time

Tech Bluff