Hi, I’m new to mongodb, I’ve downloaded and installed the community version for windows, running mongod works just fine, but when I try to run mongod with a configuration file “mongod.conf” via mongod -f mongod.conf nothing happens, I get a blinking cursor.
Below is my config file info
net:
port: 27001
bindIp: 127.0.0.1
security:
authorization: enabled
systemLog:
logAppend: true
path: var/mongodb/node/mongod.log
destination: file
storage:
dbPath: var/db
However if I remove the systemLog info the code works, what’s going on? I ensured var/mongodb/node is created and has read write permission
Can someone help me explain why this ain’t working when my systemLog info is added to my config file