1.连接本机MongoDB报错MongoNetworkError/MongooseServerSelectionError
mongoose连接本机MongoDB用127.0.0.1可以,用localhost不可以
解决方法:
修改MongoDB配置文件
net:
ipv6: true
port: 27017
bindIp: 127.0.0.1,localhost
解决方法:
修改MongoDB配置文件
net:
ipv6: true
port: 27017
bindIp: 127.0.0.1,localhost