Aşağıdaki öğreticiyi okuyarak bir fullstack uygulaması oluşturmaya çalışıyorum:
Tüm adımları izledim ve sonra çalıştırmayı denedim:
node server.js
Ama şu hatayı aldım:
MongoDB bağlantı hatası: MongoTimeoutError: Timeout._onTimeout'ta 30000 ms sonra sunucu seçimi zaman aşımına uğradı (C: \ RND \ fullstack_app \ backend \ node_modules \ mongodb \ lib \ core \ sdam \ server_selection.js: 308: 9) listOnTimeout'ta (dahili / timers.js: 531: 17) processTimers'de (internal / timers.js: 475: 7) {name: 'MongoTimeoutError', nedeni: Hata: ETIMEDOUT 99.80.11.208:27017 adresini TCPConnectWrap.afterConnect [oncomplete] olarak bağlayın (net. js: 1128: 14) {name: 'MongoNetworkError', [Symbol (mongoErrorContextSymbol)]: {}}, [Symbol (mongoErrorContextSymbol)]: {}} (düğüm: 42892) UnhandledPromiseRejectionWarning: MongoTimeoutError: 300 seçiminden sonra ms0 Timeout._onTimeout'ta (C: \ RND \ fullstack_app \ backend \ node_modules \ mongodb \ lib \ core \ sdam \ server_selection.js: 308:9) listOnTimeout'ta (internal / timers.js: 531: 17) processTimers'de (internal / timers.js: 475: 7)
Server.js adresindeki kodum aşağıdaki gibidir:
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'));
Herhangi bir öneri?
user:password
sizin içinusername and password
bağlantı dizesi?