Reputation: 31546
I have installed Cassandra 3.7 using docker. I am reading a book which asks me to run a utility called cassandra-cli
however when I do a find / -name cassandra-cli
I don't find this utility anywhere.
Do you know how can I install it? I guess this utility helps you in figuring out how the data is actually being stored by cassandra.
Upvotes: 8
Views: 13757
Reputation: 9130
cassandra-cli
is deprecated and got removed since 2.2. Use cqlsh instead.
Upvotes: 13