Cassandra: command not found

I am currently working on Cassandra tutorials on data modeling. I can't figure out why, when I try to start the cassandra service from the bin folder, I get the error:

"Cassandra: command not found".

The same happens if I try to run nodetool or cqlsh utilities. Can anyone help me solve the problem?

+3


source to share


1 answer


All cassandra binaries are in the folder $CASSANDRA_HOME/bin

.

If you run the command from CASSANDRA_HOME

, then use:



bin/cassandra
bin/cqlsh
bin/nodetool

      

+3


source







All Articles