Linux系统下 MySQL 5.7和8.0 版本安装指南(3)

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'password('XXXXX')' at line 1

在登录MySQL,修改root密码时,使用就方法 SET PASSWORD=PASSWORD(‘[新密码]’) 报错。

查看网上的相关解释为:

以前版本的MySQL的密码认证插件是“mysql_native_password”,而现在使用的是“caching_sha2_password”。

解决方案:

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码';

FLUSH PRIVILEGES;

Linux公社的RSS地址https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/cc07333aef5788968a1e9c8b7a0ed67b.html