What might I be missing? I'm Unable to connect using python Cassandra-Driver however I seem to be able to connect fine when using the CQL module.
cluster = Cluster(
contact_points=['10.x.x.xx',],
port=9160)
session = cluster.connect()
session.set_keyspace("mykeyspace")
Output:
cassandra.cluster.NoHostAvailable: ('Unable to connect to any servers', {'10.0.x.xx': ConnectionShutdown('Connection to 10.0.x.xx is closed',)})
Also, I'm hosting cassandra from a virtual machine with a single node if that matters.