gpt4 book ai didi

mysql - 如何将root密码设置为null

转载 作者:IT老高 更新时间:2023-10-28 12:54:11 25 4
gpt4 key购买 nike

如何将 MySQL 的 root 用户的密码更改为 null -- 表示没有密码或 '' -- 从 MySQL命令行客户端?

最佳答案

为我和“5.7.11 MySQL 社区服务器”工作:

use mysql;
update user set authentication_string=password(''), plugin='mysql_native_password' where user='root';

我还必须更改“plugin”字段,因为它被设置为“auth_socket”。

之后我可以在没有密码的情况下以 mysql -u root 身份连接。

关于mysql - 如何将root密码设置为null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2101694/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com