>  기사  >  백엔드 개발  >  http://localhost/phpmyadmin/ 拒绝访问是咋回事?

http://localhost/phpmyadmin/ 拒绝访问是咋回事?

WBOY
WBOY원래의
2016-06-13 13:36:262788검색

http://localhost/phpmyadmin/ 拒绝访问是怎么回事??
我装的wampserver ,http://localhost可以打开,但是打开http://localhost/phpmyadmin/时,出现下面的情况
是为什么???

wampserver 是刚装的,mysql的初始密码没有改,就是空。



config.inc.php文件中的数据也和mysql对应,如下
$cfg['Servers'][$i]['verbose'] = 'localhost';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';

------解决方案--------------------
$cfg['Servers'][$i]['AllowNoPassword'] = true;//允许空密码

这个你设置了吗?
------解决方案--------------------
libraries/common.inc.php 的886行

------解决方案--------------------
刚才没注意!
#1045 - Access denied for user 'root'@'localhost' (using password: NO) 
显然你的 root用户是有口令的

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.