Question – How to reset SugarCRM admin password via SQL query? How to reset SugarCRM admin password using phpMyAdmin? How to Reset SugarCRM forgotten password with SQL query? How to find SugarCRM default admin password? If you have forgotten your SugarCRM admin password or due to any reason, you are not able to login to SugarCRM with admin user. You can simply check the active admin user using SQL query and reset the password with simple SQL query. Reset SugarCRM Admin Password via SQL The first query will fetch the active admin accounts from your SugarCRM database.
1 | SELECT user_name FROM users WHERE is_admin = '1' AND status = 'Active'; |
SugarCRM uses…