nsadrink.blogg.se

Start mongodb server on windows
Start mongodb server on windows










It is easy to manage MongoDB database server if you configure mongodb as Windows service. In a separate window run the mongo.exe file to open mongo shell: "c:\Program Files\MongoDB\Server\3.4\bin\mongo.exe" Setting up MongoDB as a windows service "c:\Program Files\MongoDB\Server\3.4\bin\mongod.exe" -config "c:\mongo\mongod.cfg" The -config option need to specify the path to the mongod.cfg file. To start MongoDB we need to run the mongod.exe which is in the bin directory of the mongodb installation folder. systemLog:Īt this point we are ready to start MongoDB server on windows using the windows CMD. txt file extension) and add following configurations to the configuration file. Create a new file called 'mongod.cfg' at 'c:\mongo\' ( Look for the file extension, by default windows hide the. We need to create the Configuration file for the MongoDB Server. Mkdir c:\mongo\logs Create mongod.cfg configuration file

start mongodb server on windows

MongoDB installer does not create these data directories, so we need to create them manually. We need to create the Data folder for the NoSQL database server as well as Logs folder. If you go with the default installation options, mongodb will be installed to the "C:\Program Files\MongoDB" folder.












Start mongodb server on windows