we've cassandra cluster, my requirement is to verify java process (like datastax agent process, opscenter process ) running in all the nodes in the Cassandra cluster .
I will connect to one node in the cluster and run the below command
ps -ef | egrep '[j]ava'
is there a way to verify the java process running or not in the remaining nodes of the cluster without doing ssh to the remaining nodes to verify the status of all nodes in the cluster
Please let me know .