Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I browse or query live MongoDB data?

Tags:

mongodb

I've googled around but couldn't find a working MongoDB viewer or data browser.

An ideal (for my needs) tool would be a web based viewer with dead simple features (browsing and doing queries).

like image 215
Gonzalo Avatar asked Mar 09 '10 17:03

Gonzalo


People also ask

How do I query data in MongoDB?

The find() Method To query data from MongoDB collection, you need to use MongoDB's find() method.

Can we query MongoDB?

MongoDB Query is a way to get the data from the MongoDB database. MongoDB queries provide the simplicity in process of fetching data from the database, it's similar to SQL queries in SQL Database language.

How do I view data collection in MongoDB?

To get stats about MongoDB server, type the command db. stats() in MongoDB client. This will show the database name, number of collection and documents in the database.

How do I view MongoDB in my browser?

By default, MongoDB starts at port 27017. But you can access it in a web browser not at that port, rather, at a port number 1000 more than the port at which MongoDB is started. So if you point your browser to http://localhost:28017, you can see MongoDB web interface.


2 Answers

You have :

  • Mongo3
  • futon4mongo
like image 88
shingara Avatar answered Nov 08 '22 02:11

shingara


See: http://nosql.mypopescu.com/post/334469038/a-couple-of-nice-gui-tools-for-mongodb Hopefully it'll be updated frequently when new tools are available!


EDIT:

Better overview: http://www.mongodb.org/display/DOCS/Admin+UIs

I just tried MongoVUE and it works like a charm! Check it out: http://www.mongovue.com/

like image 38
NickGreen Avatar answered Nov 08 '22 02:11

NickGreen