First of all, as bindIp
parameter accepts string, the syntax of your value looks fine.
You can get the complete output of your service using journalctl
command, you can use the following command,
journalctl -xe -u mongod.service
The logs there, will show you the complete error logs.
You can also check the logs of mongod process
which is configured in your configuration file under systemLog.path
.
You should be using the only IP Addresses at which the mongod will be listening
, so you can check your IP addresses once again.
Below is my configuration file,
net:
bindIp: 127.0.0.1,192.168.100.101
port: 27018
It works just fine.