Mongo Create a user as admin for any database raise an error
28
votes
3
answers
173684
views
I am trying to create a simple user with the rights permission to access to any database and can do any actions. When I trying to execute the
createUser
command I got this error:
db.createUser({ user: "mongoadmin" , pwd: "mongoadmin", roles: ["userAdminAnyDatabase", "dbAdminAnyDatabase", "readWriteAnyDatabase"]})
2015-08-20T17:09:42.300+0000 E QUERY Error: couldn't add user: No role named userAdminAnyDatabase@new_vehicles_catalog
The problem above only happen when I enable the auth configuration and I need it.
So, How do I create an user with admin permission for any database. I want it because I configured my mongo services to uses authentication connection. If I want to execute a dump of my data I have to use this authentication parameters.
Please any help?
Using **mongo version 3.0.5**.
the service is on **Amazon Linux AMI 2015.03 (HVM), SSD Volume Type - ami-1ecae776**
Asked by Robert
(705 rep)
Aug 20, 2015, 05:21 PM
Last activity: Oct 4, 2024, 09:13 AM
Last activity: Oct 4, 2024, 09:13 AM