Troubleshoot #2002 Login Error in phpMyAdmin
Facing difficulty logging into phpMyAdmin with the error message "#2002 cannot log in to the MySQL server", users have sought assistance in resolving this issue.
One potential solution involves modifying the phpMyAdmin configuration file, config.inc.php. By editing this file, users can change the host setting:
$cfg['Servers'][$i]['host'] = 'localhost';
To:
$cfg['Servers'][$i]['host'] = '127.0.0.1';
This modification can help resolve login issues if the host setting incorrectly points to 'localhost' instead of '127.0.0.1'.
In certain cases, accessing the config.inc.php file might not be possible due to a fresh installation. In such scenarios, users must rename the config.sample.inc.php file to config.inc.php and proceed with the aforementioned modification.
By following these steps, users can overcome the #2002 login error in phpMyAdmin and establish a successful connection to their MySQL server.
The above is the detailed content of How to fix the #2002 Login Error in phpMyAdmin: \'Cannot log in to the MySQL server\'?. For more information, please follow other related articles on the PHP Chinese website!