标签:use 客户端连接 native lte ica alter class mysql 连接
mysql 8.0 默认使用 caching_sha2_password 身份验证机制 —— 从原来的 mysql_native_password 更改为 caching_sha2_password。
从 5.7 升级 8.0 版本的不会改变现有用户的身份验证方法,但新用户会默认使用新的 caching_sha2_password 。
客户端不支持新的加密方式。
登录mysql后:
ALTER USER ‘root‘@‘%‘ IDENTIFIED WITH mysql_native_password BY ‘新密码‘;
FLUSH PRIVILEGES;
注意,mysql8需要用Navicat12版本来连接。
标签:use 客户端连接 native lte ica alter class mysql 连接
原文地址:https://www.cnblogs.com/cx850116/p/9936602.html