I am trying to configure Cassandra Datastax Community Edition for remote connection on windows,
Cassandra Server is installed on a Windows 7 PC, With the lo
Alternate solution to Kat. Worked with Ubuntu 16.04
server_user@**.**.**.**Stop cassandra if running:
ps aux | grep cassandraIf running, will output a large block of commands / flags, e.g.
ubuntu 14018 4.6 70.1 2335692 712080 pts/2 Sl+ 04:15 0:11 java -Xloggc:./../logs/gc.log ........
Note 14018 in the example is the process id
kill (in this case 14018)edit cassandra.yaml file to be the following
rpc_address: 0.0.0.0broadcast_rpc_address: **.**.**.** <- your server's IP (cannot be set to 0.0.0.0)./bin/cassandra -f (from within cassandra root)cqlsh **.**.**.** (your server's IP) to test.The ./bin/nodetool status address reported my localhost IP (127.0.0.1), but cqlsh remotely still worked despite that.