Hi
When running command:
~$ mongod --dbpath data/db --logpath data/log/mongod.log --port 27000 --bind_ip “127.0.0.1,192.168.103.100,localhost” --fork
I got the following error:
about to fork child process, waiting until server is ready for connections.
forked process: 8686
ERROR: child process failed, exited with error number 100
To see additional information in this output, start without the “–fork” option.
When removing the “–fork” option I get no messages but when launching “mongo --port 27000” from terminal 2 I got the following:
MongoDB shell version v3.6.14
connecting to: mongodb://127.0.0.1:27000/?gssapiServiceName=mongodb
2019-10-22T01:19:25.174+0000 W NETWORK [thread1] Failed to connect to 127.0.0.1:27000, in(checking socket for error after poll), reason: Connection refused
2019-10-22T01:19:25.174+0000 E QUERY [thread1] Error: couldn’t connect to server 127.0.0.1:27000, connection attempt failed :
connect@src/mongo/shell/mongo.js:263:13
@(connect):1:6
exception: connect failed
Please advice!
Thanks
Salvador