美文网首页
Centos7中Lampp下Phpmyadmin无法连接数据库问

Centos7中Lampp下Phpmyadmin无法连接数据库问

作者: Frank1901s | 来源:发表于2020-03-18 09:16 被阅读0次

使用phpMyAdmin登录数据库会提示 #2002 Cannot log in to the MySQL server的错误,确认登录密码无误。

解决方法去下:

需要修改config.default.php文件中的一个配置
phpMyAdmin]# vim libraries/config.default.php

将:
$cfg['Servers'][$i]['host'] = 'localhost';
修改为:
$cfg['Servers'][$i]['host'] = '127.0.0.1';

即可解决问题。

秋风木叶
2020-3-18

相关文章

网友评论

      本文标题:Centos7中Lampp下Phpmyadmin无法连接数据库问

      本文链接:https://www.haomeiwen.com/subject/wtzfyhtx.html