Cam across this cool little utility to launch a local Cassandra cluster and test your apps around Cassandra. Check it out.
1. Link
https://github.com/pcmanus/ccm/
2. Install Instructions.
Bring up a 5 Node cassandra Cluster up with Cassandra version 2.1.3. Minimal and Simplistic-
cd work/git/ccm ccm status ccm create test -v 2.1.3 -n 5 -s ccm start ccm status
3. Other commands
Bring selected node down:
ccm node4 stop
Use cqlsh on node:
ccm node1 cqlsh USE demo; SELECT * from testcf;