mongoDB - 2.Installation
1.Install MongoDB On Windows To install MongoDB on Windows, first download the latest release of MongoDB from https://www.mongodb.org/downloads . Make sure you get correct version of MongoDB depending upon your Windows version. To get your Windows version, open command prompt and execute the following command. C:\>wmic os get osarchitecture OSArchitecture 64-bit C:\> 32-bit versions of MongoDB only support databases smaller than 2GB and suitable only for testing and evaluation purposes. Now extract your downloaded file to c:\ drive or any other location. Make sure the name of the extracted folder is mongodb-win32-i386-[version] or mongodb-win32-x86_64-[version]. Here [version] is the version of MongoDB download. Next, open the command prompt and run the following command. C:\>move mongodb-win64-* mongodb 1 dir(s) moved. C:\> In case you have extracted the MongoDB at different location, then go to that path by using command cd FOOLDER/DIR and now run the above g...