use mysql
select * from user where user="root";
update user set password=password("mysql@2020") where user="root";
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 "("mysql@2020") where user="root"" at line 1
- 解决:
- 在MySQL 8.04前,执行:SET PASSWORD=PASSWORD("[新密码]");但是MySQL8.0.4开始,这样默认是不行的。因为之前,MySQL的密码认证插件是“mysql_native_password”,而现在使用的是“caching_sha2_password”。
alter user "root"@"localhost"identified with mysql_native_password by "root";
flush privileges;
https://blog.csdn.net/u012232730/article/details/82417245
alter user "root"@"localhost"identified with mysql_native_password by "mysql@2020";
alter user "root"@"%"identified with mysql_native_password by "mysql@2020";
也有文章说不用flush
成功!不用flush。
改完不重启mycat没事
重启就不行了。
mysql> select count(*) from td_b_nodecode;
ERROR 1184 (HY000): Invalid DataSource:0
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341