mysql8 :客户端连接caching-sha2-password问题 mysql8 :客户端连接caching-sha2-password问题

mysql8 :客户端连接caching-sha2-password问题

问题:caching-sha2-password

处理:

    ALTER USER 'root'@'localhost' IDENTIFIED BY 'password' PASSWORD EXPIRE NEVER; #修改加密规则 
   ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; #更新一下用户的密码 

   FLUSH PRIVILEGES; #刷新权限 

再重置下密码:alter user 'root'@'localhost' identified by '123qwe';

猜你喜欢

转载自blog.csdn.net/xihongshi_chaofanqie/article/details/80636254
今日推荐