MySql数据库问题

1、MySQL 连接出现 Authentication plugin ‘caching_sha2_password‘ cannot be loaded

翻译:MySQL 连接出现  无法加载身份验证插件“caching_sha2_password” 

—————————————————————————————————————————

原因分析:MySql8版本之前加密规则是mysql_native_password;之后的版本都是caching_sha2_password,进行了加密处理;Mysql自身创建的密码会进行哈希算法的不可逆加密,形成哈希值而非明文密码,远程连接由于无法将密码进行转换,故而会登录报错

----修改加密规则 
ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; 
----更新一下用户的密码
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; 


 

你可能感兴趣的:(数据库,mysql,数据库常见问题)