MongoError: auth failed mongoose connection string

前端 未结 11 1648
一向
一向 2020-12-29 07:10

I can connect to the DB through terminal, but getting this error using mongoose and gulp. mongoose/node_modules/mongodb/lib/mongodb/connection/base.js:246 MongoError: auth

11条回答
  •  庸人自扰
    2020-12-29 08:00

    mongoose.connect("mongodb://[host]/[db]", { auth:{
    
        authdb: "admin",
        user: [username],
        password: [pw]
    
    }}).then(function(db){
    
        // do whatever you want
    
        mongoose.connection.close() // close db
    
    })
    

提交回复
热议问题