配置中定义的 controluser 连接失败。 #1045 无法登录 MySQL 服务器
Posted
技术标签:
【中文标题】配置中定义的 controluser 连接失败。 #1045 无法登录 MySQL 服务器【英文标题】:Connection for controluser as defined in your configuration failed. #1045 Cannot log in to the MySQL server 【发布时间】:2015-02-07 12:04:20 【问题描述】:我的 Windows 中安装了 xampp。之前,我可以使用我的用户名和密码轻松登录到我的 phpmyadmin。很长一段时间后,我无法使用以下消息登录 phpmyadmin:
#1045 Cannot log in to the mysql server
Connection for controluser as defined in your configuration failed.
我相信我的密码是真的(来自 config.inc.php)
这是 config.inc.php
<?php
/*
* This is needed for cookie based authentication to encrypt password in
* cookie
*/
$cfg['blowfish_secret'] = 'xampp'; /* YOU SHOULD CHANGE THIS FOR A MORE SECURE COOKIE AUTH! */
/*
* Servers configuration
*/
$i = 0;
/*
* First server
*/
$i++;
/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'cookie'; // Authentication method (config, http or cookie based)
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['password'] ='1234';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';
/* Bind to the localhost ipv4 address and tcp */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
/* User for advanced features */
$cfg['Servers'][$i]['controluser'] = 'root';
$cfg['Servers'][$i]['controlpass'] = '';
/* Advanced phpMyAdmin features */
$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
$cfg['Servers'][$i]['relation'] = 'pma_relation';
$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
$cfg['Servers'][$i]['history'] = 'pma_history';
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
$cfg['Servers'][$i]['tracking'] = 'pma_tracking';
$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
$cfg['Servers'][$i]['recent'] = 'pma_recent';
$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';
/*
* End of servers configuration
*/
?>
【问题讨论】:
【参考方案1】:根据您发布的config.inc.php
,您的root 用户密码是1234(正如我在$cfg['Servers'][$i]['password'] ='1234';
行中看到的那样),但稍后在文件中定义控制用户时,您使用的是空白密码.
我建议设置一个实际的 controluser,其权限比 root 少,但快速解决方法是编辑并进行此更改:$cfg['Servers'][$i]['controlpass'] = '1234';
要创建 controluser 帐户,请使用类似于以下的 SQL 命令:
GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost' IDENTIFIED BY 'pmapass';
将您的 phpMyAdmin 配置存储数据库的名称(可能是“phpmyadmin”)替换为 <pma_db>
,并将自定义密码替换为 pmapass
。
【讨论】:
谢谢,但我的 xampp 很久以前就重新安装了。所以我只是赞成你的回答 谢谢。很高兴您能够解决问题。以上是关于配置中定义的 controluser 连接失败。 #1045 无法登录 MySQL 服务器的主要内容,如果未能解决你的问题,请参考以下文章
无法打开 PhpMyAdmin(配置中定义的 controluser 连接失败。)
phpmyadmin 未使用 docker 连接----配置中定义的 controluser 连接失败
配置中定义的 controluser 的 phpMyAdmin 连接失败