Answer the question
In order to leave comments, you need to log in
How to access mongodb database with password and login?
Hello, tell me how to access the database in nodejs for example
mongoose.connect('mongodb://<username><password>localhost/test');
Answer the question
In order to leave comments, you need to log in
Oddly enough, in the mongi documentation, all this is described.
create user:
mongo
>>use "db name"
>>db.createUser(
{
user: "user_name",
pwd: "user_passwd",
roles: [{role: "readWrite"}]
}
)
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question