SQLyog连接数据库报错plugin caching_sha2_password could not be loaded

打开cmd:mysql -uroot -p 

进入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';

本文转载自https://blog.csdn.net/lihua5419/article/details/80394716,感谢MyXieZhiXin大神给予的帮助

相关文章:

  • 2021-05-20
  • 2018-12-13
  • 2022-01-04
  • 2022-01-04
  • 2021-10-05
  • 2022-01-09
  • 2018-10-11
猜你喜欢
  • 2021-10-08
  • 2021-08-16
  • 2021-09-18
  • 2021-06-27
  • 2021-09-18
  • 2021-07-07
  • 2021-09-28
相关资源
相似解决方案