SQL : mysql8.0客户端连接报错:authentication plugin caching_sha2_pa

原因说明:

mysql 8.0 默认使用 caching_sha2_password 身份验证机制 —— 从原来的 mysql_native_password 更改为 caching_sha2_password。 
从 5.7 升级 8.0 版本的不会改变现有用户的身份验证方法,但新用户会默认使用新的 caching_sha2_password 。

解决方法:

使用cmd命令,通过mysql -u root -p 命令登入本地mysql,执行如下命令:

mysql>  ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码';

备注:新密码可以和旧密码相同~

以上。

 

你可能感兴趣的:(#,数据库_Mysql)