How do I fix a 1045 error when trying to log into phpMyAdmin?

Linode Staff

I'm receiving the following error when I open phpMyAdmin:

mysqli_real_connect(): (HY000/1045): Access denied for user 'phpmyadmin'@'localhost' (using password: YES)

Connection for controluser as defined in your configuration failed.

How can I fix this?

2 Replies

You can fix this error by reconfiguring your phpMyAdmin credentials to gain access to the MySql database:

sudo dpkg-reconfigure phpmyadmin

This will provide several interactive menus that will allow you to reconfigure the phpMyAdmin package with new credentials.

You could also attempt to manually reconfigure the credentials for the 'phpmyadmin' user from within MySql by taking the following steps:

1) Log into MySql as root:
mysql -u root -p

2) You can make sure that the 'phpmyadmin' user exists by running:
SELECT User FROM mysql.user;

3) Switch to the appropriate MySql database:
use phpmyadmin;

4) Set a new password for the 'phpmyadmin' user:
update user set password=PASSWORD('your_new_password') where User='phpmyadmin';

But the user table is in mysql database, right?

then for step 3 should be

use mysql;

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct