jueves, 4 de enero de 2024

Re: Too many login attempts

 


Re: Too many login attempts

Postby blackbird2306 » Mon Oct 14, 2019 12:10 pm

Why don't you wait and try it 15 minutes later? If you don't want to wait this time you can unlock the user (6666) by typing this in linux cli:
CODE: SELECT ALL
mysql -D asterisk -e 'UPDATE `vicidial_users` SET `failed_login_count` = "0" WHERE `user` = "6666";'

and if you have forgotten the password for a certain user, you can change the password by this line:
CODE: SELECT ALL
mysql -D asterisk -e 'UPDATE `vicidial_users` SET `pass` = "HERENEWPASSWORD" WHERE `user` = "6666";'