Login Unsuccessful Your account has been locked temporarily
-
Login Unsuccessful
Your account has been locked temporarilyMongoDB 2.6
Can't join ACP
-
This post is deleted!
-
Shit any body know, how i can clear lock in MongoDB? I dont use Redis, all tutorials about ... help~!
-
Should be
db.objects.remove({_key: "lockout:1"})
and also may need
db.objects.remove({_key: "loginAttempts:1"})
-
Solved. Close.
db.objects.remove({_key: "loginAttempts:1"}) - what doing this string?
-
@Александр-Кузин That will reset the login attempts counter for user 1, but it's not needed if you already know the correct password.
-
@yariplus said in Login Unsuccessful Your account has been locked temporarily:
That will reset the login attempts counter for user 1, but it's not needed if you already know the correct password.
Oh ok. How many attempts i have, before accounts lock again?
-
@Александр-Кузин 5 attempts is the default.