今天用另一台机器上的MongoDB,但是使用本地连接时,没问题
换成IP地址时,出现
解决的方法,修改配置文件
systemLog:
destination: file
path: d:/Mongodata/log/mongod.log
storage:
dbPath: d:/Mongodata
security:
authorization: enabled
net:
port:
bindIp: 127.0.0.1,0.0.0.0
重启MongoDB
更多配置查看 https://docs.mongodb.com/manual/reference/configuration-options/