Magento2 admin account disabled error
Hello All,
If you get issue something below on the Magento2 login page
Simply below query to database via phpmyadmin.
Example is for reset password for admin user.
UPDATE admin_user SET password = CONCAT(SHA2(‘xxxxxxxxNewPassword’, 256), ‘:xxxxxxxx:1’) WHERE username = ‘admin’;
NewPassword : Replace it with your password.
Hope it will work.