“MongoServersElelectionError: Connectez EConnRefused :: 1: 27017” Réponses codées

MongoServersElelectionError: Connectez EConnRefused :: 1: 27017

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

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

MongooseServersElelectionError: Connectez 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! Erreur: connecter eConnRefused

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

(Nœud: 15855) NonandledPromisErejectionWarning: MongooseServersElelectionError: Connectez EConnRefused 127.0.0.1:27017

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

MongooseServersElelectionError: Connectez 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

Réponses similaires à “MongoServersElelectionError: Connectez EConnRefused :: 1: 27017”

Questions similaires à “MongoServersElelectionError: Connectez EConnRefused :: 1: 27017”

Plus de réponses similaires à “MongoServersElelectionError: Connectez EConnRefused :: 1: 27017” dans JavaScript

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code