Failed to authenticate russell.harrower@admin with mechanism MONGODB-CR: AuthenticationFailed MONGODB-CR credentials missing in the user document.
Now I have been using an older version of MongoDB and thought I would put the latest version on my new ubuntu home server. However I am now having an issue with using the admin user which I set up via.
use admin
db.createUser(
{
user: "siteUserAdmin",
pwd: "password",
roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]
}
)
However it seems that when I use Robomongo it decides to say that I am unsuccessful, when I look at the logs I get the message above, could someone please let me know what I have to do to be able to login. Is this a RoboMongo issue or something else?