Home > Database > Mysql Tutorial > body text

Why Am I Getting \'Access Denied for User \'root\'@\'localhost\'\' Error in PHPMyAdmin?

Mary-Kate Olsen
Release: 2024-11-02 19:33:30
Original
246 people have browsed it

Why Am I Getting

Troubleshooting 'Access Denied for User 'root'@'localhost' with PHPMyAdmin

When attempting to update the root password within PHPMyAdmin, users may encounter the following error:

#1045 - Access denied for user 'root'@'localhost' (using password: NO)
Copy after login

This error prevents access to the PHPMyAdmin panel, leaving users perplexed about the cause.

Solution:

The root cause resides in the phpmyadmin config.inc.php configuration file. To rectify the issue, open the file and edit the following code snippet:

$cfg['Servers'][$i]['user'] = '**your-root-username**';
$cfg['Servers'][$i]['password'] = '**root-password**';
Copy after login

Ensure that you replace **your-root-username** with your desired root username and **root-password** with the password you intend to set. Additionally, insert Password before password in the following line:

$cfg['Servers'][$i]['password'] = '**root-password**';  
Copy after login

Edited Code Snippet:

$cfg['Servers'][$i]['user'] = '**your-root-username**';
$cfg['Servers'][$i]['Password'] = '**root-password**';
Copy after login

Once you have made these modifications, save the changes and restart PHPMyAdmin. You should now be able to access the panel and make the necessary password updates without encountering the access denied error.

The above is the detailed content of Why Am I Getting \'Access Denied for User \'root\'@\'localhost\'\' Error in PHPMyAdmin?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!