
I ask for help from the guru of MySQL. This is what pma gives an error. What to do?

I ask for help from the guru of MySQL. This is what pma gives an error. What to do?
It seems that this question does not correspond to the subject of the site. Those who voted to close it indicated the following reasons:
In the screenshots, the error " Access denied for user root (using password: NO) " and the figure " controluser " appear.
You need to correctly set the username and password for controluser 'a . They are used to connect to the phpMyAdmin configuration storage (configuration storage) , where settings for additional functions are stored.
Configuration storage is optional, phpMyAdmin can work without it. Therefore, you have two ways:
Disable configuration storage: $cfg['Servers'][$i]['pmadb'] = null; in config.inc.php .
Configure controluser 'a : create a user in MySQL, grant him a certain set of privileges, then add his name and password in config.inc.php :
$cfg['Servers'][$i]['controluser'] = '<ИМЯ_ПОЛЬЗОВАТЕЛЯ>'; $cfg['Servers'][$i]['controlpass'] = '<ПАРОЛЬ>'; root , but the error still thinks that I am root - hiddI turned off the configuration storage, and then turned it back on, it helped.
Source: https://ru.stackoverflow.com/questions/415793/
All Articles