这是我的代码。我想连接到Mongodb,但发出{MongoNetworkError: connection 0 to 127.0.0.1:27017 closed}
错误。
MongoClinet.connect("mongodb://127.0.0.1:27017/demo",{ useNewUrlParser: true},(err,db)=>{
if(err)
console.log(err.toString());
else{
console.log("Connected");
}
});
MongoNetworkError: connection 0 to localhost:27017 closed
MongoNetworkError: connection 1 to localhost:27017closed
MongoNetworkError: connection 2 to localhost:27017 closed
答案 0 :(得分:0)
删除mongod.lock
并(重新)启动mongod
服务器。