“MongooseserVeSelectionError: Connect EconnRefused :: 1: 27017” Respostas de código

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

MongooseserVeSelectionError: 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

(Nó: 15855) Propriedade não sindicalizada: MongooseserVerSelectionError: Conecte EconnRefused 127.0.0.1:27017

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

MongooseserVeSelectionError: 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

Respostas semelhantes a “MongooseserVeSelectionError: Connect EconnRefused :: 1: 27017”

Perguntas semelhantes a “MongooseserVeSelectionError: Connect EconnRefused :: 1: 27017”

Mais respostas relacionadas para “MongooseserVeSelectionError: Connect EconnRefused :: 1: 27017” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código