0

我刚刚安装了easy php,而phpmyadmin 没有连接到mysql 服务器。它抛出一个错误,上面写着 - #1045 - 用户'root'@'localhost'的访问被拒绝。

我没有进行任何设置或任何类型的更改。我刚刚安装并尝试打开 phpmyadmin。配置文件如下所示 -

/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['hide_db'] = '(mysql|information_schema|performance_schema|phpmyadmin)';

/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = false;

这真的很烦人..有人可以帮忙吗。

谢谢

4

1 回答 1

0

我也有这个问题。这是我的解决方法:下载并安装 MySQL 服务器,停止 MySQL 服务器服务并使用 MySQL Workbench 通过 EasyPHP 控制已安装的 MySQL 服务器。

于 2013-05-04T11:28:01.243 回答