MongoDB Introduction and Installation Reference http://www.cnblogs.com/lipan/archive/2011/03/08/1966463.html
Installation process:
- First step: Download the installation package: Official ← Click here, if the win system, note whether the 64-bit or 32-bit version, please select the correct version.
- Second step: Create a new directory "D:\MongoDB", unzip the downloaded installation package, locate all the. exe files under the bin directory, and copy to the directory you just created.
- Step three: Create a new "data" folder in the "D:\MongoDB" directory, which will be the root folder for data storage.
Configure the MONGO service side:
Open the cmd window and enter the command as follows:
> D:
> CD D:\MongoDB
> Mongod--dbpath D:\MongoDB\data
This MONGO service is started, you can open another CMD window, enter the command:
> D:
> CD D:\MongoDB
> MONGO
Under this window, you can perform normal MONGO command-line operations, such as show DBS, etc.
More information about MongoDB