“MongoServerSelectionError: Connect eConnrefused :: 1: 27017” Kode Jawaban

MongoServerSelectionError: Connect eConnrefused :: 1: 27017

// instead of this
const url = "mongodb://localhost:27017";

// Just Replace
const url = "mongodb://0.0.0.0:27017";
Lively Lyrebird

MongooseserVerselectionError: Connect eConnrefused :: 1: 27017

// Try using 127.0.0.1 instead of localhost in connection url
// mongodb://localhost:27017
// mongodb://127.0.0.1:27017

const mongoose = require('mongoose');

mongoose.connect('mongodb://127.0.0.1:27017').then(() => {
    console.log("connected to database");
})
Heartho De La Huracan

NPM Err! Kesalahan: Hubungkan eConnrefused

npm config set proxy null
npm config set https-proxy null
npm config set registry http://registry.npmjs.org/
Lucky Lark

(Node: 15855) UnhandledPromiserEcejection -warning: MongooseserVerselectionError: Connect eConnrefused 127.0.0.1:27017

mongodb://localhost:27017/{DATABASE_NAME}
Outstanding Okapi

MongooseserVerselectionError: Hubungkan Econnrefused 127.0.0.1:27017

This happened probably because the MongoDB service isn't started. Follow the below steps to start it:

Go to Control Panel and click on Administrative Tools.
Double click on Services. A new window opens up.
Search MongoDB.exe. Right click on it and select Start.
The server will start. Now execute npm start again and the code might work this time.
stacklord

Jawaban yang mirip dengan “MongoServerSelectionError: Connect eConnrefused :: 1: 27017”

Pertanyaan yang mirip dengan “MongoServerSelectionError: Connect eConnrefused :: 1: 27017”

Lebih banyak jawaban terkait untuk “MongoServerSelectionError: Connect eConnrefused :: 1: 27017” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya