Reputation: 29
I have installed Cassandra 3.11 on Ubuntu 16.04. Everything works fine but I am not able to find sstabledump
utility in the bin folder.
How can I get this installed as patch? Or I am missing something?
Upvotes: 1
Views: 2525
Reputation: 1231
Depending on which version you have installed:
install_location/resources/cassandra/tools/bin
install_location/tools/bin/
For package installations (Cassandra package or DataStax Enterprise 5.0 Installer Services and package installations) you do not need to know the installation folder to run it, you can just simply use it as:
sstabledump [options] sstable_file
https://docs.datastax.com/en/cassandra/3.0/cassandra/tools/ToolsSSTabledump.html
Also to have the tools, you need to install cassandra-tools
separately apart from cassandra:
sudo apt-get install cassandra-tools
Upvotes: 4