Wednesday, 15 July 2015

MongoDB Packages After Installation:



Introduction:

In my previous blog I have discussed how we can install mongo dB in our machine (Windows OS). So now we have mongo dB is there in our machine lets understand downloads we have got after installation.

By default your installation will be available in (“C:\Program Files\MongoDB\Server\3.0\bin”). Your installation contains couple of installation files as you can see below. Let’s understand them what are they for.
 



You are having couple of exe among them, which is most useful.

  • Mongod.exe - The database server.
  • Mongos.exe - Sharding controller, mainly used when you create clusters of Mongod.
  • Mongo.exe  - The database shell (uses interactive JavaScript) a client console to interact with dB.


There are other exe which are mainly used for administration purpose: 

  • Mongodump         - Mongodump is a for creating a binary export of the contents of a database.
  • MongoRestore      - To restore the DB.
  • MongoImport       - As name says Import data JSON, CSV.
  • MongoExport       - As name says Export data as JSON, CSV.
  • MongoStat         - Status of a currently running Mongod or mongos. 
  • Mongoperf         - Disk I/O performance independently of MongoDB. 
  • Mongotop          - Time spends on reading and writing data.

 


For more information on these packages we can get from link mentioned in reference.

References:

http://docs.mongodb.org/v2.2/reference/mongooplog/

http://docs.mongodb.org/v2.2/reference/mongod/

 

No comments:

Post a Comment