Magento – Magento 2:- “Forgot your password?” issue from admin side

emailmagento2password

I try to change admin password by Forgot your password link but I did not get any email for Forgot password.

Best Answer

Solution #1

This answer is taken from https://magento.stackexchange.com/a/141612/62052

UPDATE admin_user SET password = CONCAT(SHA2('xxxxxxxxNewPassword', 256), ':xxxxxxxx:1') WHERE username = 'admin';

Solution #2

This answer is taken from https://magento.stackexchange.com/a/90933/62052

path_to_magento/bin/magento admin:user:create --admin-user="admin" --admin-password="123123q" --admin-email="admin@example.com" --admin-firstname="Admin" --admin-lastname="Admin"
Related Topic