We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Go to mongoDB console and delete your current user & set authSchema version to 3 instead of 5 , follow these commands in mongo console -
mongo use admin db.system.users.remove({}) <== removing all users db.system.version.remove({}) <== removing current version db.system.version.insert({ "_id" : "authSchema", "currentVersion" : 3 })
Now restart the mongod and create new user then it should work fine.
Note: use remove commands in test db only, if in production use update.
Fix taken from: http://stackoverflow.com/a/31476552
The text was updated successfully, but these errors were encountered:
Closed in inaka/sumo_db_mongo#3
Sorry, something went wrong.
No branches or pull requests
Go to mongoDB console and delete your current user & set authSchema version to 3 instead of 5 , follow these commands in mongo console -
Now restart the mongod and create new user then it should work fine.
Note: use remove commands in test db only, if in production use update.
Fix taken from: http://stackoverflow.com/a/31476552
The text was updated successfully, but these errors were encountered: