phpMyAdmin无法连接MySQL怎么办
解决方案:
1、首先我们进入phpmyadmin的目录,看有没有配置文件config.inc.php,如果没有把config.sample.inc.php复制重命名为config.inc.php;
2、然后打开配置文件,搜索localhost,找到$cfg[‘Servers’][$i][‘host’] = ‘localhost;
3、把localhost修改为127.0.0.1;
$cfg['Servers'][$i]['host'] = 'localhost';
修改为:
$cfg['Servers'][$i]['host'] = '127.0.0.1';
PHP中文网,大量MySQL视频教程,欢迎学习!
以上是phpMyAdmin无法连接MySQL怎么办的详细内容。更多信息请关注PHP中文网其他相关文章!