mongodb install windows
Download the latest production release of MongoDB from the MongoDB downloads page.Click on .msi file and follow the instructions.
mongo Db |
To Start the Mongodb server
Open an Administrator command prompt. Press the Win key, type cmd.exe, and press Ctrl + Shift + Enter to run the Command Prompt as Administrator. Go to Mongo db installed directory.sy: mongod --dbpath="path to db" --port=27017
Example: mongod --dbpath=d:\mongodb\ --port=27017
mongod ------ Command
dbpath --- specify the database storeing path
port --- port number default port (27017)
Connect to the Mongo Db server using command prompt
Using below command we will able to connect to mongo server from command prompt in windows
Example: "C:\Program Files\MongoDB\Server\3.2\bin\mongo.exe