MongoDB local machine connection error with nodjs (mongoose)
mongoose.connect("mongodb://localhost/test"); or mongoose.connect("mongodb://localhost:27017/test");
results in
MongooseServerSelectionError: connect ECONNREFUSED ::1:27017
Solutions
use
MONGOURL="mongodb://127.0.0.1/test"
Comments
Post a Comment