The process of installing MongoDB under 32-bit Windows:
1. Download MongoDB zip file
Download site: Https://fastdl.mongodb.org/win32/mongodb-win32-i386-2.6.9.zip
2. Unzip the file and place it in D:\Mongodb (manually create the directory)
3. Create a folder manually D:\Mongodb\data
4, enter CMD, enter into the D:\Mongodb\bin directory input command: Mongod-dbpath "D:\Mongodb\data"
5, when the cmd appears waiting for connections on port 27017, indicating a successful configuration
Enter: http://localhost:27017/in the browser address bar to detect if the configuration was successful
6, enter the D:\Mongodb\bin. Create log directory, D:\Mongodb\data\log
, in console input: Mongod--dbpath "D:\Mongodb\data"--logpath "D:\Mongodb\data\log\MongoDB.log"--install--servicename " MongoDB "--journal
7, in the console input: net start MongoDb, you can start the service
The process of installing MongoDB under 32-bit Windows: