因为某些原因安装了8.0以后phpMyAdmin始终无法登陆 。
原因在于MYSQL8.0的密码验证方式从mysql_native_password改为了caching_sha2_password。而目前为止,php的pdo和mysqli应该还是不支持的。
所以在my.ini找到
default_authentication_plugin=caching_sha2_password
改为
default_authentication_plugin=mysql_native_password
重启,发现还是不能登陆。推测应该是因为密码已经是sha2方式保存的,所以php以原来的方式验证肯定无法通过,所以要修改一下密码。
如下:
use mysql;
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码';
FLUSH PRIVILEGES;
终于解决了
参考文献:
最新评论: