install MongoDB on windows server 2012

HaBo

I am trying to install MongoDB on Windows Azure VM which is running Windows 2012 Server

  1. I have mongodb in C:\Program Files\MongoDB\bin
  2. I have config file at D:\mongodb\mongod.cfg

And my config looks like this

logpath=d:\mongodb\log\mongod.log
dbpath=d:\mongodb\data\db
port=27018 

now I want to run mongo db from config file so i go to command prompt and run below command c:\Program Files\MongoDB\bin>mongod --config "D:\mongodb\mongod.cfg" this stays silent on command prompt no further response.

Then I tried c:\Program Files\MongoDB\bin>mongod --config "D:\mongodb\mongod.cfg" --install that give me bellow message

2014-05-02xxxxxx log file "d:mongodb\log\mongod.log" exists; moved to "d:mongodb\log\mongod.log.2014-05-02xxxxx"

I guess this is just creating a log file for me.

Now if I run mongod.exe it give me error saying dbpath (\data\db\) does not exist. But in my config file i gave the path as dbpath=d:\mongodb\data\db

Changed my config file to YAML

systemLog:
   destination: file
   path: "e:\\mongodb\\log\\mongod.log"
   quiet: true
   logAppend: true
net:
   bindIp: 127.0.0.1
   port: 27018
storage:
   journal:
      enabled: true
   dbPath: "e:\\mongodb\\data\\db"

now I run mongod --config "C:\MongoDB 2.6 Standard\mongod.cfg" no response.

Sebastian

Your config file has wrong syntax (it uses YAML syntax). Change it to:

systemLog:
  destination: file
  path: "d:\\mongodb\\log\\mongod.log"
net:
  port: 27018
storage:
  dbPath: "d:\\mongodb\\data\\db"

Alternatively you can also use mongod --dbpath "d:\mongodb\data\db"

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Install Windows Defender on Windows Server 2012

From Dev

Cannot install SQL Server 2012 on Windows Server 2012

From Dev

Unable to Install .net framework in Windows 2012 server

From Dev

How to install Jenkins on Windows Server 2012

From Dev

Is possible to install Android Studio in Windows Server 2012?

From Dev

Is it possible install Windows phone sdk on Windows Server 2012

From Dev

Fail to install mongodb community edition on windows server

From Dev

Fail to install mongodb community edition on windows server

From Dev

Not able to install socket.io on Windows server 2012

From Dev

Not able to install IIRF on Windows Server 2012 / IIS8

From Dev

Install Net 3.5 Framework on Windows Server 2012 without DVD

From Dev

How to install IE11 on windows server 2012 standard

From Dev

how to install ssdt March 2014 release on windows server 2012

From Dev

Install SQL Server 2012 management tools on Windows XP

From Dev

How do I install Windows Defender/MSE on Server 2012?

From Dev

Is there a need to install print server services on Windows 2012 if the printer will be shared?

From Dev

how to install ssdt March 2014 release on windows server 2012

From Dev

Not able to install IIRF on Windows Server 2012 / IIS8

From Dev

Unable to install phpmyadmin on Windows Server 2012 R2

From Dev

How to Install Windows Server 2012 and Ubuntu 16.04 Desktop on a Same Machine

From Dev

Install service to server 2012

From Dev

How to install SharePoint Foundation 2010 with SQL server 2012 standard version on windows server 2012

From Dev

How to install SharePoint Foundation 2010 with SQL server 2012 standard version on windows server 2012

From Dev

Should I use wampserver on Windows Server 2012 R2 or install apache, mysql etc. on the server

From Dev

windows server 2012 crashed when trying to install windows phone 8 sdk

From Dev

How can I install IIS on Windows Server 2012 R2 using InstallShield

From Dev

Why is AspNet5.ENU.RC1.exe failing to install on Windows Server 2012 R2?

From Dev

Unable to Install SQL Server 2012 on Windows 7 PC - cabinet file .cab has an invalid digital signature

From Dev

Windows Server 2012 Datacentre R2 install gets stuck at getting devices ready

Related Related

  1. 1

    Install Windows Defender on Windows Server 2012

  2. 2

    Cannot install SQL Server 2012 on Windows Server 2012

  3. 3

    Unable to Install .net framework in Windows 2012 server

  4. 4

    How to install Jenkins on Windows Server 2012

  5. 5

    Is possible to install Android Studio in Windows Server 2012?

  6. 6

    Is it possible install Windows phone sdk on Windows Server 2012

  7. 7

    Fail to install mongodb community edition on windows server

  8. 8

    Fail to install mongodb community edition on windows server

  9. 9

    Not able to install socket.io on Windows server 2012

  10. 10

    Not able to install IIRF on Windows Server 2012 / IIS8

  11. 11

    Install Net 3.5 Framework on Windows Server 2012 without DVD

  12. 12

    How to install IE11 on windows server 2012 standard

  13. 13

    how to install ssdt March 2014 release on windows server 2012

  14. 14

    Install SQL Server 2012 management tools on Windows XP

  15. 15

    How do I install Windows Defender/MSE on Server 2012?

  16. 16

    Is there a need to install print server services on Windows 2012 if the printer will be shared?

  17. 17

    how to install ssdt March 2014 release on windows server 2012

  18. 18

    Not able to install IIRF on Windows Server 2012 / IIS8

  19. 19

    Unable to install phpmyadmin on Windows Server 2012 R2

  20. 20

    How to Install Windows Server 2012 and Ubuntu 16.04 Desktop on a Same Machine

  21. 21

    Install service to server 2012

  22. 22

    How to install SharePoint Foundation 2010 with SQL server 2012 standard version on windows server 2012

  23. 23

    How to install SharePoint Foundation 2010 with SQL server 2012 standard version on windows server 2012

  24. 24

    Should I use wampserver on Windows Server 2012 R2 or install apache, mysql etc. on the server

  25. 25

    windows server 2012 crashed when trying to install windows phone 8 sdk

  26. 26

    How can I install IIS on Windows Server 2012 R2 using InstallShield

  27. 27

    Why is AspNet5.ENU.RC1.exe failing to install on Windows Server 2012 R2?

  28. 28

    Unable to Install SQL Server 2012 on Windows 7 PC - cabinet file .cab has an invalid digital signature

  29. 29

    Windows Server 2012 Datacentre R2 install gets stuck at getting devices ready

HotTag

Archive