因为某些原因安装了8.0以后phpMyAdmin始终无法登陆 。
我也是手残,没事更新什么mysql。文章源自爱尚资源教程网-https://www.23jcw.net/2288.html
原因在于MYSQL8.0的密码验证方式从mysql_native_password改为了caching_sha2_password。而目前为止,php的pdo和mysqli应该还是不支持的。文章源自爱尚资源教程网-https://www.23jcw.net/2288.html
所以在my.ini找到文章源自爱尚资源教程网-https://www.23jcw.net/2288.html
default_authentication_plugin=caching_sha2_password
改为文章源自爱尚资源教程网-https://www.23jcw.net/2288.html
default_authentication_plugin=mysql_native_password
重启,发现还是不能登陆。推测应该是因为密码已经是sha2方式保存的,所以php以原来的方式验证肯定无法通过,所以要修改一下密码。文章源自爱尚资源教程网-https://www.23jcw.net/2288.html
如下:文章源自爱尚资源教程网-https://www.23jcw.net/2288.html
use mysql; ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码'; FLUSH PRIVILEGES;
终于解决了文章源自爱尚资源教程网-https://www.23jcw.net/2288.html 文章源自爱尚资源教程网-https://www.23jcw.net/2288.html
相关文章
版权声明:文章图片资源来源于网络,如有侵权,请留言删除!!!