I think, first of all, you should correctly install Cassandra Server on your local one. You can find the latest source from Cassandra Repo .
Then you can follow this link to configure the Cassandra server. Although I do not think that you need to change anything in the configuration files, since the cassandra source is correctly configured to work in local mode.
Then create a Maven project from the IDE, add the dependency shown by @Lyuben Todorov ie
<dependency> <groupId>com.netflix.astyanax</groupId> <artifactId>astyanax</artifactId> <version>1.56.42</version> </dependency>
Then try a sample example from the Astyanax wiki
source share