mysql 8.0.23 版本无法使用sqlyog登录解决
使用下面的语句创建用户和密码
create user 'username'@'%' identified by '123456';
grant all on *.* to 'username'@'%' with grant option;
验证通过此语法创建的用户,通过sqlyog客户端无法正常连接
无法连接是因为:密码加密方式与sqlyog不对应
通过下面的语句修改用户的密码方式和重置密码
alter user 'username'@'%' identified with mysql_native_password by '123456';
select User,Host from mysql.user;
再次验证
本文来自博客园,作者:Lin-Grocery,转载请注明原文链接:https://www.cnblogs.com/moniter/articles/14711942.html