mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
Updated Forgot Password (markdown)
parent
c929a2562b
commit
aa72c31626
1 changed files with 24 additions and 0 deletions
|
|
@ -18,6 +18,14 @@ Set some user as admin:
|
|||
```
|
||||
db.users.update({username:'admin-username-here'},{$set:{isAdmin:true}})
|
||||
```
|
||||
Check are there any failed logins with wrong password, that brute force login prevention has denied login:
|
||||
```
|
||||
db.AccountsLockout.Connections.find()
|
||||
```
|
||||
If there are, delete all those login preventions:
|
||||
```
|
||||
db.AccountsLockout.Connections.deleteMany({})
|
||||
```
|
||||
Then exit:
|
||||
```
|
||||
exit
|
||||
|
|
@ -42,6 +50,14 @@ Set some user as admin:
|
|||
```
|
||||
db.users.update({username:'admin-username-here'},{$set:{isAdmin:true}})
|
||||
```
|
||||
Check are there any failed logins with wrong password, that brute force login prevention has denied login:
|
||||
```
|
||||
db.AccountsLockout.Connections.find()
|
||||
```
|
||||
If there are, delete all those login preventions:
|
||||
```
|
||||
db.AccountsLockout.Connections.deleteMany({})
|
||||
```
|
||||
Then exit:
|
||||
```
|
||||
exit
|
||||
|
|
@ -72,6 +88,14 @@ Set some user as admin:
|
|||
```
|
||||
db.users.update({username:'admin-username-here'},{$set:{isAdmin:true}})
|
||||
```
|
||||
Check are there any failed logins with wrong password, that brute force login prevention has denied login:
|
||||
```
|
||||
db.AccountsLockout.Connections.find()
|
||||
```
|
||||
If there are, delete all those login preventions:
|
||||
```
|
||||
db.AccountsLockout.Connections.deleteMany({})
|
||||
```
|
||||
Then exit:
|
||||
```
|
||||
exit
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue