首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
27017专题
Error: Network is unreachable. Reason: couldn‘t connect to server localhost:27017(连接mongodb数据库失败)
1.问题连接mogodb失败 MongoDB shell version v4.2.3connecting to: mongodb://127.0.0.1:27017/?compressors=disabled&gssapiServiceName=mongodb2021-02-21T15:34:05.647+0800 E QUERY [js] Error: couldn't conn
阅读更多...
MongooseServerSelectionError: connect ECONNREFUSED ::1:27017
出现上述错误是因为 本地使用127.0.0.1而不是localhost 因为 Node.js 18 及更高版本更喜欢 IPv6 地址, 这意味着,在许多计算机上,Node.js 将解析localhost为 IPv6 地址::1, 而 Mongoose 将无法连接,除非 mongodb 实例在启用了 ipv6 的情况下运行。 可以看到后面的确实是::1:27017而非127.0.0.1:27017
阅读更多...