连接mysql出现“Unable to load authentication plugin 'caching_sha2_password”错误

2021/8/25 19:06:09

本文主要是介绍连接mysql出现“Unable to load authentication plugin 'caching_sha2_password”错误,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

这是mysql 8.0版本才出现的问题,原因是mysql 8.0 默认使用 caching_sha2_password 身份验证机制 —— 从原来的 mysql_native_password 更改为 caching_sha2_password。

  解决办法:

    可以更换版本但是感觉治标不治本,建议修改身份验证机制

    1、登陆mysql

      在mysql的bin目录下打开cmd(默认是C:\Program Files\MySQL\MySQL Server 8.0\bin)

      输入:mysql -uroot -p     接着输入密码

    2、登陆mysql成功之后输入:

      alter user 'root'@'localhost' identified by 'root' password expire never;

      alter user 'root'@'localhost' identified with mysql_native_password by 'root'

      flush privileges;

      其中root为mysql密码

完美解决



这篇关于连接mysql出现“Unable to load authentication plugin 'caching_sha2_password”错误的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程