Monthly Archives: June 2025

Cassandra common commands

By | June 20, 2025

Cassandra version brew list –versions cassandra brew info cassandra cassandra -v Starting Cassandra cassandra -f (foreground) or brew services start cassandra Checking if Cassandra is up brew services list | grep cassandra Connecting to Cassandra jdbc:cassandra://127.0.0.1:9042?localdatacenter=datacenter1 jdbc:cassandra://127.0.0.1:9042/system?localdatacenter=datacenter1 also works. cqlsh DESCRIBE KEYSPACES; DROP KEYSPACE keyspace_name;

DBeaver GUI for Cassandra

By | June 20, 2025

Trying to get a UI for Cassandra is not as easy as it should be. DbVisualizer is usually a good option but I had issues and git cloning https://github.com/avalanche123/cassandra-web had hoops to jump through as well. DataStax Studio and TablePlus are popular choices but are commercial options. DBeaver was highly recommended but upon installation, I… Read More »