配置中定义的控制用户连接失败.xampp

2022-01-05 00:00:00 php phpmyadmin

当我尝试卸载 xampp 并重新安装 xampp 时,当我转到 phpmyadmin 时收到以下错误消息

when i tried to uninstall xampp and reinstall xampp.I received below error message when i go phpmyadmin

需要帮助和指导来解决它.谢谢

Need help and guide to solve it .thanks

错误

MySQL 说:文档

您的配置中定义的 controluser 连接失败.

Connection for controluser as defined in your configuration failed.

phpMyAdmin 尝试连接 MySQL 服务器,服务器拒绝连接.您应该检查配置中的主机、用户名和密码,并确保它们与 MySQL 服务器管理员提供的信息相对应.

phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.

推荐答案

基本上这里发生的事情是你的 [ .../phpMyadmin/config.inc.php] 文件中有错误的凭据.如果你有,就会发生这种情况安装了另一个mysql实例,你在这个文件中使用的用户名和密码不同.你必须更改上面文件中的用户名和密码才能匹配.

Basically what is happening here is that you have wrong credentials in your[ .../phpMyadmin/config.inc.php] file .This occurs if you have another mysql instance installed and the username and the passowrd that you use in this file is different.You have to change the username and the password in the above file to match.

/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root'; //Change this to your values
$cfg['Servers'][$i]['password'] = 'root';  //Change this to your values
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';

相关文章