Mongodb Web Interface Tools

I tried using the Mongoui Tool as a web interface for my mongodb instance, but I don't understand it.

I am interested to know Are there any other tools similar to mongoui ??

So, I can access the mongodb instance using a browser. Since my instance is an linux ec2 instance, and I cannot use any GUI tools for this.

Please help me find a solution for this.

Thanks in advance.

+6
source share
5 answers

Check out Mongo-Express :

MongoDB admin web interface written using Node.js, Express and Bootstrap3

Functions

  • Connect to multiple databases
  • View / Add / Remove Databases
  • View / add / rename / delete collections
  • View / add / update / delete documents
  • Preview audio / video / images in a row as a collection
  • Nested and / or large objects collapse for easy viewing.
  • Asynchronous on-demand loading of large document properties (> 100KB by default) to quickly view the collection
  • GridFS Support - Add / Receive / Delete Incredibly Large Files
  • Use BSON data types in documents
  • Mobile / Responsive - Bootstrap 3 works on small screens when you're in a snap
  • Connection and authentication in separate databases
  • Authentication as an administrator to view all databases
  • Database blacklist / whitelist
  • Disable CA CA and CA Validation
  • Replica Set Support

Screenshots

Main page | Browse Database | Browse Collection | Editing a document --- | --- | --- | --- XiYhblA.png | XWcIgY1.png | UmGSr3x.png | lL38abn.png

These screenshots are from version 0.30.40 View the album for more screenshots: (server status, types of database, etc.) https://imgur.com/a/9vHsF

Hope this helps.

+9
source

At the moment (November 2017), the best choice should be https://github.com/mrvautin/adminMongo Rockmongo and Mongo-Express are not supported for years, and adminMongo has surpassed them.

enter image description here

+3
source

A better alternative is a Mongolator or nosqlclient, as it has recently been renamed. It is currently being updated.

https://github.com/nosqlclient/nosqlclient

+1
source

Rockmongo web interface tool worked fine for me.

I went to the following link to install Rockmongo
http://blog.khairulazam.net/2013/05/19/install-rockmongo-on-ubuntu/

0
source

Drop DBHawk from the Datasparc MongoDB Toolkit written in Java.

Main functions:

  • Database and Collection Browser,
  • Data editor
  • Collection of import / export,
  • GridFS Network Viewer,
  • JSON and a table data viewer.

enter image description here

0
source

Source: https://habr.com/ru/post/1012618/


All Articles