To change Admin password
If you forgot the Admin password to log in SugarCRM, don’t panic you can set new password for Admin through the database.
Run this SQL query to set new password for the Admin.
update users set user_hash = md5{‘NewPassword’} where user_name = ‘admin’;
Change ‘NewPassword’ to the password that you want to set for the admin.
