Magento 2 reset Customer Password from Database

Just change “Bharat@007” on below

UPDATE `customer_entity` SET `password_hash` = CONCAT(SHA2(‘xxxxxxxxBharat@007’, 256), ‘:xxxxxxxx:1’) WHERE `entity_id` = 5;
UPDATE `customer_entity` SET `password_hash` = CONCAT(SHA2(‘xxxxxxxxBharat@007’, 256), ‘:xxxxxxxx:1’) WHERE `entity_id` = 7;

Leave a comment