Bhupen Sinha
Bhupen Sinha

Reputation: 29

sstabledump not found on Cassandra 3.11 Ubuntu 16.04

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

Answers (1)

Andrea Nagy
Andrea Nagy

Reputation: 1231

Depending on which version you have installed:

  • DataStax Enterprise 5.0 Installer No-Services and tarball installations:

    install_location/resources/cassandra/tools/bin

  • Cassandra tarball installations:

    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

Related Questions