微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

SQLyognavica)连接docker容器中的mysql8.0.12 报错1251或2003解决办法

使用sqlyog(navicat)远程连接docker容器中的MysqL8.0.12  报以下错误↓↓↓

解决办法:
一、在docker中启动MysqL,定义端口号3306

[root@localhost ~]# docker run -p 3306:3306 --name MysqL01 -e MysqL_ROOT_PASSWORD=123456 -d MysqL

二、执行命令,输入密码

[root@localhost ~]# docker exec -it MysqL01 bash

root@863b69d78d4f:/# MysqL -uroot -p

Enter password: 
Welcome to the MysqL monitor.  Commands end with ; or \g.
Your MysqL connection id is 8
Server version: 8.0.12 MysqL Community Server - GPL

copyright © 2000, 2018, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered Trademark of Oracle Corporation and/or its
affiliates. Other names may be Trademarks of their respective
owners.

Type ‘help;’ or ‘\h’ for help. Type ‘\c’ to clear the current input statement.

MysqL>

三、授权

MysqL> GRANT ALL ON . TO ‘root’@’%’;

四、刷新权限

MysqL> flush privileges;

五、更改加密规则

MysqL> ALTER USER ‘root’@‘localhost’ IDENTIFIED BY ‘password’ PASSWORD EXPIRE NEVER;

六、更新root用户密码(123456是我的密码,要替换成自己的)

MysqL> ALTER USER ‘root’@’%’ IDENTIFIED WITH MysqL_native_password BY ‘123456’;

七、刷新权限

MysqL> flush privileges;

OK,可以了,再次使用 sqlyog(Navicat) 连接数据库

作者:JAVAWeb小将
来源:CSDN
原文:https://blog.csdn.net/hcrw01/article/details/83375943
版权声明:本文为博主原创文章,转载请附上博文链接

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐