Answers for "mongooseerror: operation `users.insertone()` buffering timed out after 10000ms"

0

MongooseError - Operation `users.findOne()` buffering timed out after 10000ms

npm i -E [email protected]
or

yarn add -E [email protected]
Posted by: Guest on August-06-2021
0

MongooseError: Operation `users.insertOne()` buffering timed out after 10000ms node js

mongoose 
 .connect(process.env.MONGO_PROD_URI, {
        useNewUrlParser: true,
        useUnifiedTopology: true,
        useCreateIndex: true,   })   
 .then(() => console.log("Database connected!"))
 .catch(err => console.log(err));
Posted by: Guest on October-01-2021
0

mongooseerror: operation `users.insertone()` buffering timed out after 10000ms

You need first of all configurate the database connection. There's a link that will help you: https://kb.objectrocket.com/mongo-db/simple-mongoose-and-node-js-example-1007 .

If you have any other doubt let me known.
Posted by: Guest on March-17-2021

Code answers related to "mongooseerror: operation `users.insertone()` buffering timed out after 10000ms"

Browse Popular Code Answers by Language