He
Hedon59
#1
Welcome and Happy New Year @Hedon59
To disable two factor authentication run in ssh terminal
$ mysql -u root
> use cyberpanel;
> UPDATE `loginSystem_administrator` SET `twoFA` = '0' WHERE `loginSystem_administrator`.`id` = 1;
> EXIT;
To reset admin password run in ssh terminal
## change mynewpassword123 to your preferred password
$ adminPass mynewpassword123
You go to the terminal and run this command to reset cyberpanel admin password:
$ adminPass mynewpassword123
To disable twoFA run following command:
$mysql -u root
use cyberpanel;
UPDATEloginSystem_administratorSETtwoFA= ‘0’ WHEREloginSystem_administrator.id= 1;
EXIT;