i want to monitor cassandra through cli but as soon as i hit nodetool command it says
nodetool command not found
cassandra is installed in my host
here is the cassandra bin path and data
and here is the configuration directory of Cassandra
i can say cassandra is properly installed but nodetool is not working how can i solve this any kind of suggestion or help would be really helpful



You have a tarball installation of Cassandra (vs packaged installation) so you need to provide the path to the
bin/directory in order to execute the Cassandra tools. For example:You can also configure the
PATHenvironment variable on Linux to include Cassandra'sbin/directory so you don't have to specify the full path every time you run thenodetoolcommand. For example:Cheers!