我无法打开我的phpmyadmin。访问被拒绝错误即将来临。我试图从终端停止mysql服务并重新启动我的灯泡,但它没有帮助
答案 0 :(得分:1)
试试这个。
第1步:打开phpMyAdmin/librarires/config.inc.php
第2步:Change $cfg['PmaAbsoluteUri'] = ''
至$cfg['PmaAbsoluteUri'] = 'localhost/phpmyadmin/';
第3步:change $cfg['Servers'][$i]['host'] = 'localhost'
至$cfg['Servers'][$i]['host'] = 'Localhost';
Step4 :将$cfg['Servers'][$i]['password'] = ''
更改为$cfg['Servers'][$i]['password'] = 'type your password here';
Step5 :重新启动MySql
答案 1 :(得分:0)
根据您的屏幕截图似乎您正在尝试连接本地mysql服务器而不传递root用户的密码。如果有任何错误,请再次尝试使用root和密码设置为root用户并分享。
还要确保首先在服务器上运行mysql。