我通過Homebrew安裝了MySQL和PhpMyAdmin。我收到以下錯誤,當我嘗試用root和密碼登錄:無法登錄到MySQL服務器(PhpMyAdmin)
mysql -u root -p
phpMyAdmin的配置:
Cannot log in to the MySQL server
我可以通過與終端登錄到MySQL
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
/* Server parameters */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = 'pass';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = false;
我正在運行這個apache。我嘗試了所有在stackoverflow上的解決方案,但他們似乎並沒有工作。誰能幫我?
您是否嘗試過發佈localhost而不是回送ip作爲主機? –
@LelioFaieta是的,沒有區別 – Alexander
@LelioFaieta我決定再次檢查,現在它的工作,謝謝! – Alexander