Added by Deleted user over 6 years ago
I have installed Openproject on centos7 (AWS).
I can view the site using the public-ip.
However it never allows me to login - saying it is blocked at the moment.
Is there a way I can edit/update user credentials from backend?
Replies (1)
I have fixed this now by using below.
openproject run console
admin = User.find_by(login: ‘admin’)
admin.password = ‘mynewpassword1234’
admin.password_confirmation = ‘mynewpassword1234’
admin.save!
exit