Hi there:
This is my config file:
net:
bindIp: "192.168.103.100,localhost"
port: 27000
operationProfiling:
slowOpThresholdMs: 50
processManagement:
fork: true
security:
authorization: enabled
storage:
dbPath: "/var/mongodb/db/"
systemLog:
destination: "file"
logAppend: true
path: "/var/mongodb/db/mongod.log"
When I try to run mongod:
vagrant@m103:~$ mongod --config /shared/mongod.conf
Error parsing YAML config file: yaml-cpp: error at line 2, column 8: illegal map value
I guess there is a problem with line 2, bindIp
(first lab it complains about this), but what is column 8
?
Thanks in advance.