docker 中安装mysql8之后无法远程连接的问题caching-sha2-password
Posted shichangle
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了docker 中安装mysql8之后无法远程连接的问题caching-sha2-password相关的知识,希望对你有一定的参考价值。
#修改加密规则
ALTER USER ‘root‘@‘%‘ IDENTIFIED BY ‘password‘ PASSWORD EXPIRE NEVER;
#更新一下用户的密码
ALTER USER ‘root‘@‘%‘ IDENTIFIED WITH mysql_native_password BY ‘password‘;
#刷新权限
FLUSH PRIVILEGES;
#重置密码
alter user ‘root‘@‘%‘ identified by ‘123qwe‘
注意:上面 % 是设置远程连接,本地连接设为localhost即可
以上是关于docker 中安装mysql8之后无法远程连接的问题caching-sha2-password的主要内容,如果未能解决你的问题,请参考以下文章