MongoError: auth failed mongoose connection string

前端 未结 11 1637
一向
一向 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 07:48

    There is many ways to make it work. This is what worked for me [mongoose v5.9.15] :

    mongoose.connect('mongodb://localhost:27017/', {
        auth: {
            user:'root',
            password:'example'
        },
        authSource:"admin",
        useUnifiedTopology: true,
        useNewUrlParser: true
    }
    

提交回复
热议问题