Reset admin password of magento
Posted Date: December 8, 2010Have you ever forget the Magento admin password and wanted to reset?
Here is the solution:
UPDATE admin_user SET password=CONCAT(MD5('qXpassword'), ':qX') WHERE username='admin';
Change “qX” and “password” whatever you want it to be.
Hope it will help someone.

