I have installed mongodb on windows 8.1
As per the official docs, I have used the command promp to navigate to D:\mongodb\bin
then I use the following command
mongod.exe --config D:\mongodb\mongodb.conf
The content of mongodb.conf
bind_ip = 127.0.0.1,100.100.100.100
port = 3979
quiet = true
dbpath = D:\mongodb\data\db
logpath = D:\mongodb\data\log\mongodb.log
logappend = true
journal = true
But my mongod is not starting. But if I use mongod.exe (without using config file), it works fine...