【发布时间】:2021-11-20 11:31:10
【问题描述】:
免责声明:类似的主题没有为我的问题提供有效的解决方案!
- 重新启动 MongoDB 服务器(发生错误时继续运行)
- 在 windows 上使用 MongoDB 服务器作为服务(手动启动)
- 通过 MongoDB Shell CLI 包建立连接,方法是在命令提示符下按 enter 建立默认连接 (
mongodb://127.0.0.1:27017/directConnection=true&serverSelectionTimeoutMS=2000) - 调用了 npm install 和 npm start(我的依赖在下面列出)
- 检查 MongoDB 是否正在运行
- 通过windows资源监视器查看27017端口被mongod.exe使用TCP占用,不受防火墙限制
- 检查我没有使用可能干扰的 VPN 或代理连接。
- 然后我打开了我正在收听的
http://localhost:3000/(app.listen(3000);)
但是,我仍然收到以下错误:
const timeoutError = new error_1.MongoServerSelectionError(`Server selection timed out after ${serverSelectionTimeoutMS} ms`, this.description); ^
MongoServerSelectionError: connect ECONNREFUSED ::1:27017
at Timeout._onTimeout (\node_modules\mongodb\lib\sdam\topology.js:330:38)
at listOnTimeout (node:internal/timers:557:17)
at processTimers (node:internal/timers:500:7) {
reason: TopologyDescription {
type: 'Unknown',
servers: Map(1) {
'localhost:27017' => ServerDescription {
_hostAddress: HostAddress { isIPv6: false, host: 'localhost', port: 27017 },
address: 'localhost:27017',
type: 'Unknown',
hosts: [],
passives: [],
arbiters: [],
tags: {},
maxWireVersion: 0,
roundTripTime: -1,
lastUpdateTime: 536295834,
lastWriteDate: 0,
error: MongoNetworkError: connect ECONNREFUSED ::1:27017
at connectionFailureError (\node_modules\mongodb\lib\cmap\connect.js:293:20)
at Socket.<anonymous> (\node_modules\mongodb\lib\cmap\connect.js:267:22)
at Object.onceWrapper (node:events:510:26)
at Socket.emit (node:events:390:28)
at emitErrorNT (node:internal/streams/destroy:164:8)
at emitErrorCloseNT (node:internal/streams/destroy:129:3)
at processTicksAndRejections (node:internal/process/task_queues:83:21)
}
},
stale: false,
compatible: true,
heartbeatFrequencyMS: 10000,
localThresholdMS: 15,
logicalSessionTimeoutMinutes: undefined
}
}
我的依赖:
"dependencies": {
"ejs": "^3.1.6",
"express": "^4.17.1",
"mongodb": "^4.0.1"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
仅供参考:Node.js v17.0.1
更新: 这是我的 database.js 文件
const mongodb = require('mongodb');
const MongoClient = mongodb.MongoClient;
let database;
async function connectToDatabase() {
const client = await MongoClient.connect('mongodb://localhost:27017');
database = client.db('file-demo');
}
function getDb() {
if (!database) {
throw { message: 'Database not connected!' };
}
return database;
}
module.exports = {
connectToDatabase: connectToDatabase,
getDb: getDb,
};
这是我的 app.js:
const path = require('path');
const express = require('express');
const userRoutes = require('./routes/users');
const db = require('./data/database');
const app = express();
app.set('view engine', 'ejs');
app.set('views', path.join(__dirname, 'views'));
app.use(express.urlencoded({ extended: false }));
app.use(express.static('public'));
app.use(userRoutes);
db.connectToDatabase().then(function () {
app.listen(3000);
});
【问题讨论】:
-
该错误主要表示MongoDB服务器未启动或提供的连接字符串uri不正确。您可能希望在帖子中包含连接代码。您是否能够使用
mongosh、mongoshell 或 Compass 等任何客户端工具连接到数据库服务器? -
@prasad_ 我可以通过 MongoDB shell 与数据库交互(我通过 mongosh 成功使用了 CRUD 操作)。我用我用来建立连接的代码更新了我的帖子。
-
尝试在 database.js 中将
'mongodb://localhost:27017'更改为localhost为127.0.0.1。 -
@prasad_ 非常感谢您,将其发布为答案,我将接受它以供将来参考。
-
这是一个常见问题,并且已经有关于这个/类似问题的详细且解释清楚的答案。谢谢,编码愉快!
标签: node.js mongodb express mongo-shell