How to reset the admin password

I have a suiteCRM setup. The user login works okay, but I can’t log in as the administrator that I created. How do I reset the password internally?

Thanks for any help you can provide.

You can run the a query to your DB directly. Check this post: Forgotten admin password

Hi,
I think I understand your problem, you can solve it by following the instruction mention below.
Please access PHPMyAdmin and run this query. " update users set user_hash =md5(“new_password”) where id =‘1’. Please take users table backup before this update query.