- NavitCat 连接MySQL8 Client does no
- Mac Navicat连接mysql8 Client does
- 连接Mysql8报错:Client does not suppo
- Mysql8 连接提示 Client does not supp
- Navicat连接Mysql报错:Client does not
- Nodejs连接Mysql报错:Error: Cannot en
- 'Client does not support authent
- node连接到navicat 提示Client does not
- Client does not support authenti
- nivicat连接新安装的Mysql8.0 Client doe
出现如下错误

我们都知道MySQL8使用了加强的加密机制,既然NavitCat不支持,那就只好把加密机制降级到原来的的,如下图

alter user 'root'@'localhost' identified with mysql_native_password by '你的密码'
关键在于这句,mysql_native_password 是MySQL原来的加密机制,改好刷新就能连上了。
网友评论