Joomla! Admin Password Lost
There is no way to recover the admin password.
Instead the DB table containing the password can be modified. A new password can be MD5 hashed and inserted the following way:
UPDATE `jos_users` SET `password` = MD5( ‘new password’ ) WHERE `jos_users`.`username` = “admin”;