“MongoserverselectionError: Connect EconnRefused :: 1: 27017” Código de respuesta

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! Error: conectar ECONNRefused

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

(Nodo: 15855) Sin control de control de medias: MongooseServerselectionElectionError: Conecte EconnRefused 127.0.0.1:27017

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

MongoosserverselectionError: Conecte 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

Respuestas similares a “MongoserverselectionError: Connect EconnRefused :: 1: 27017”

Preguntas similares a “MongoserverselectionError: Connect EconnRefused :: 1: 27017”

Más respuestas relacionadas con “MongoserverselectionError: Connect EconnRefused :: 1: 27017” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código