0

Coming from SQL Server I'm used to using the SQL Management Studio to look at the data in the DB.

Is there any way (GUI/Web Tool or Console app) that would allow me to simply view documents in the Couchbase DB?

Robert Taylor
  • 4,225
  • 2
  • 17
  • 9
  • Couchbase has embeded web interface, that is running "out of the box" and you can access it on 8091 port. – m03geek Oct 20 '13 at 11:25

1 Answers1

4

You can view the data for pasting the following into a browser, if running locally then you can just put localhost in below, otherwise put the ip of the server down (make sure you have the correct ports open).

http://IP_ADDRESS_HERE:8091

Visit for which ports couchbase needs open http://docs.couchbase.com/couchbase-manual-2.2/#network-ports

You can browse the data or pull back a specific document if you know its key, go to Data Buckets and then click documents on the bucket you want to view for a list of the documents.

Visit for a more detailed overview http://docs.couchbase.com/couchbase-manual-2.2/#administration-tasks

Mario
  • 35,726
  • 5
  • 62
  • 78
scalabilitysolved
  • 2,473
  • 1
  • 26
  • 31
  • but is there a way I can easily filter the data? is there a software like MongoHub where I can search values within my documents quickly? – Zennichimaro Jun 01 '16 at 13:10