1
-
问题:
Error in .local(drv, ...) :
Failed to connect to database: Error: Plugin caching_sha2_password could not be loaded: 找不到指定的模块。 -
解决办法:
原文链接:https://blog.csdn.net/lihua5419/article/details/80394716
进入mysql依次执行下面语句:
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #修改加密规则
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; #更新一下用户的密码
FLUSH PRIVILEGES; #刷新权限
alter user 'root'@'localhost' identified by 'xzx123456';#重置密码,xzx123456就是变更后的密码,自己的密码自己更改下哦
2
-
问题:
-
解决办法:
网友评论