phpmyadmin不起作用

时间:2014-01-13 09:36:41

标签: javascript php

欢迎使用phpMyAdmin

错误 MySQL说:文档

1045 - 用户'root'@'localhost'拒绝访问(使用密码:YES)

我的配置页

/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'root';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$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'] = 'pma';
$cfg['Servers'][$i]['controlpass'] = '';

2 个答案:

答案 0 :(得分:2)

密码为root的用户root @ localhost不存在。 如果您可以通过其他方式连接到数据库,则应使用您在那里使用的凭据。但是使用密码“root”似乎不太安全。

答案 1 :(得分:0)

您还应确认您的主机确实是127.0.0.1或localhost。某些Web主机使用不同的主机名。