Tôi đang cố gắng tạo một ứng dụng fullstack đọc hướng dẫn sau:
Tôi làm theo tất cả các bước và sau đó cố gắng chạy:
node server.js
Nhưng tôi đã nhận được lỗi sau:
Lỗi kết nối MongoDB: MongoTimeoutError: Lựa chọn máy chủ đã hết thời gian sau 30000 ms tại Timeout._onTimeout (C: \ RND \ fullstack_app \ backend \ node_modules \ mongodb \ lib \ core \ sdam \ server_selection.js: 308: timers.js: 531: 17) tại processTimers (Internal / timers.js: 475: 7) {name: 'MongoTimeoutError', reason: Error: kết nối ETIMEDOUT 99.80.11.208:27017 tại TCPConnectWrap.afterConnect [như trên máy tính. js: 1128: 14) {name: 'MongoNetworkError', [Symbol (mongoErrorContextSymbol)]: {}}, [Symbol (mongoErrorContextSymbol)]: {}} (nút: 42892) UnhandledPromise tại Timeout._onTimeout (C: \ RND \ fullstack_app \ backend \ node_modules \ mongodb \ lib \ core \ sdam \ server_selection.js: 308:9) tại listOnTimeout (nội bộ / timers.js: 531: 17) tại processTimers (Internal / timers.js: 475: 7)
Mã của tôi tại server.js như sau:
const mongoose = require('mongoose');
const router = express.Router();
// this is our MongoDB database
const dbRoute =
'mongodb+srv://user:<password>@cluster0-3zrv8.mongodb.net/test?retryWrites=true&w=majority';
mongoose.Promise = global.Promise;
// connects our back end code with the database
mongoose.connect(dbRoute,
{ useNewUrlParser: true,
useUnifiedTopology: true
});
let db = mongoose.connection;
db.once('open', () => console.log('connected to the database'));
Bất kỳ đề xuất?
user:password
của bạnusername and password
?