Navicat 远程连接docker容器中的mysql 报错1251 - Client does not support authentication protocol 解决办法

Posted 大帝不巧

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Navicat 远程连接docker容器中的mysql 报错1251 - Client does not support authentication protocol 解决办法相关的知识,希望对你有一定的参考价值。

Navicat 远程连接docker容器中的mysql 报错1251 - Client does not support authentication protocol 解决办法

 

 

Navicat 远程连接docker容器中的mysql 报错1251 - Client does not support authentication protocol 解决办法

1)、容器中登录mysql,查看mysql的版本

mysql> status;

2)、进行授权远程连接(注意mysql 8.0跟之前的授权方式不同)

授权
GRANT ALL ON . TO ‘root’@’%’;
刷新权限
flush privileges
此时,还不能远程访问,因为Navicat只支持旧版本的加密,需要更改mysql的加密规则

3)、更改加密规则
ALTER USER ‘root’@‘localhost’ IDENTIFIED BY ‘password’ PASSWORD EXPIRE NEVER;
  
4)、更新root用户密码
ALTER USER ‘root’@’%’ IDENTIFIED WITH mysql_native_password BY ‘123456’;
刷新权限
flush privileges;
OK,设置完成,再次使用 Navicat 连接数据库

以上是关于Navicat 远程连接docker容器中的mysql 报错1251 - Client does not support authentication protocol 解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Navicat连接Docker中的mysql报错:client does not support authentication

docker中mysql同步数据

docker 创建mysql容器并且绑定到本地navicat

ubuntu16.04下使用navicat连接docker mysql5.7.20

客户端远程连接docker容器中的mysql 报1251错误

docker部署mysql远程连接 解决1251 client does not support ..