1. Create a folder
named 'learn' ( or whatever you want to give )
$ mkdir -p /learn/mongodb /app/dbMongo
#
/learn/mongodb = Holds the MongoDB
source
2. Extract the Mongo DB zip file in /learn folder
$ tar -xvf
MongoDB.tar /learn/mongodb
3. change the permission of folder to user who run the db here- In my case User - atul and Group - atul
$ chown -R atul:atul /learn/mongodb /app/dbMongo


