Home > database >  Is there a Database access limit on MongoDB?
Is there a Database access limit on MongoDB?

Time:11-28

Is there a limit to how many database accesses i can add to the db?, for example i have 2 in there right now but is there a cap to the amount?

If i wanted to can i make 100 accesses?

reference picture

CodePudding user response:

the mongoDB limits documentation doesn't indicate any limit to the number of accounts/users

CodePudding user response:

You can limit number of connections: mongod --maxConns = 200

  • Related