【发布时间】:2020-10-20 11:55:56
【问题描述】:
我正在尝试在我的 mac 上设置 phpmyadmin,mysql 已经在我的 mac 上运行,但是我得到了 mysqli::real_connect(): (HY000/2002): Connection denied 错误,任何人都知道如何修复它,谢谢
----------------------------------------------- ---------
config.inc.php 文件:
<?php
/*
* Generated configuration file
* Generated by: phpMyAdmin 5.0.4 setup script
* Date: Tue, 20 Oct 2020 11:36:42 +0000
*/
/* Servers configuration */
$i = 0;
/* Server: 127.0.0.1 [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = '';
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['port'] = '';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'password';
/* End of servers configuration */
$cfg['blowfish_secret'] = 'C0DH:ogx;5K1W`tteE3T%xL`0TzHYSD~';
$cfg['DefaultLang'] = 'en';
$cfg['ServerDefault'] = 1;
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';
?>
【问题讨论】:
-
尝试从 CLI 登录:mysql -u root -p after MySQL> 编写以下命令:SELECT host, user from mysql.user;写回你得到的。
标签: php mysql phpmyadmin