Posts

MongoDB Tools

 

MongoDB tools

MongoShell:

        Mongo shell is a REPL(Read Eval Print Loop) for interacting with MongoDB deployments i.e we can connect and manipulate the MongoDB in remote server.
Documentaion here 

Steps to Install in Windows:
  • Download MongoShell here (Platform :windows, Package : zip)
  • Extract and go to bin folder
  • Launch mongosh.exe , this will bring the shell for connecting remote mongo server like below 
   
 Now type the below command and press enter to connect 
        mongodb://hostname:port 
example: mongodb://localhost:27017

After connecting successfully , we can see output like the below.


Robo3t(RoboMongo) :
    Robo3t is a graphical user interface (GUI) for your MongoDB hosting deployments
    Download here 

Run the executable file robo3t.exe and connect the mongo server by File > Connect > Create > Enter the host and port details and click connect


Comments