Report this

What is the reason for this report?

How to update current user role on mongoDB

Posted on August 14, 2021

How to update current user role from read/write an specific db only access to userAdminAnyDatabase?



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hi @mrtonyq22,

The only way I know is using the db.updateUser() function:

db.updateUser( username, update, writeConcern )

Updates the user’s profile on the database on which you run the method. An update to a field completely replaces the previous field’s values. This includes updates to the user’s roles array.

You can check more about it here:

https://docs.mongodb.com/manual/reference/method/db.updateUser/

Hi there,

DigitalOcean now supports per-database MongoDB RBAC (role-based access control) through the API. This means you can limit MongoDB users to specific databases and assign roles like Admin, Read/Write, or Read-Only.

You can find more details in the announcement here: https://www.digitalocean.com/blog/rbac-and-predefined-roles-for-mongodb

And check the documentation for usage examples:

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.