Reference URL: http://www.cnblogs.com/mecity/archive/2011/06/11/2078527.html#3060056
Mongod Database Startup program MONGO database operator interface startup program
1, C:\Program files\mongodb 2.6 standard\bin>mongod--dbpath E:\mongodb\blog\db start database
2. Double-click Mongo.exe to start MongoDB operation interface
In this way, the interface is not available once the Mongod is closed.
Windows Service mode
Increase the Windows service (must be administrator rights to register the service.) ServiceName must be in hump form, otherwise cannot register service)
C:\Program files\mongodb 2.6 standard\bin>mongod--dbpath E:\mongodb\blog\db--logpath E:\mongodb\blog\log\ Blog.log--install--servicename Blog
Close the Windows service
C:\Program files\mongodb 2.6 standard\bin>mongod--dbpath E:\mongodb\blog\db--logpath E:\mongodb\blog\log\ Blog.log--remove--servicename Blog
net start blog (open service) must be Administrator rights
net stop blog (shutdown service) must be Administrator rights
Simple configuration of the 2015-03-18--mongodb