📌  相关文章
📜  1524(HY000):插件'authentication_plugin'未加载-无论代码示例

📅  最后修改于: 2022-03-11 14:58:33.003000             🧑  作者: Mango

代码示例1
use mysql;
update user set authentication_string=PASSWORD("") where User='root';
update user set plugin="mysql_native_password" where User='root';  # THIS LINE

flush privileges;
quit;