I have installed Cassandra on my Ubuntu server. Now I want to access it in a browser (something like PHPMyAdmin for MySQL). How can I do this?
Asked
Active
Viewed 452 times
0
-
Welcome to Stack Overflow! A friendly reminder that this site is for getting help with coding, algorithm, or programming language problems so I voted to have your post moved to [DBA Stack Exchange](https://dba.stackexchange.com/questions/ask?tags=cassandra). For future reference, you should post DB admin/ops questions on https://dba.stackexchange.com/questions/ask?tags=cassandra. Cheers! – Erick Ramirez Dec 07 '22 at 12:14
1 Answers
0
Cassandra doesn't come with a graphical interface. You will need to install clients from third parties.
Here are some of the popular clients:
- DataStax DevCenter is a free visual schema and query IDE for developers and administrators looking to run CQL statements against a Cassandra cluster. The last version was released in 2016 but it is still available to download from the DataStax Downloads site.
- DataStax Studio is an interactive developer tool for CQL, SparkSQL and DSE Graph. Studio can connect to clusters running DataStax Enterprise (not open-source Apache Cassandra).
You can also connect to a Cassandra cluster from RDBMS clients using the Simba JDBC driver. I have previously written instructions for the following clients:
Finally, we (the Cassandra community) maintain a list of tools in the Ecosystem section of the official Apache Cassandra website if you're interested in finding out what else is available. Anant also maintain a list at cassandra.tools. Cheers!
Please support the Apache Cassandra community by hovering over cassandra then click on the Watch tag
button. Thanks!

Erick Ramirez
- 13,964
- 1
- 18
- 23