gpt4 book ai didi

mysql - root 密码未保存

转载 作者:行者123 更新时间:2023-11-29 19:04:33 25 4
gpt4 key购买 nike

有时我将 root 密码更改为“aaa”。现在我想将其更改为“bbb”。

我已经尝试在 xampp shell 中执行此操作,使用 mysqladmin,使用 SET PASSWORD FOR 'root'@'localhost' = PASSWORD('bbb'); 并且它一直有效,直到下次我刷新权限或重新启动服务器,它会重置为“aaa”。

“aaa”显然被缓存在某个地方,但我无法弄清楚在哪里。有什么建议吗?

最佳答案

我找到了this dev.mysql.com 上的文章。它指出:

If the ALTER USER statement fails to reset the password, try repeating the procedure using the following statements to modify the user table directly:

UPDATE mysql.user
SET authentication_string = PASSWORD('MyNewPass'), password_expired = 'N'
WHERE User = 'root' AND Host = 'localhost';
FLUSH PRIVILEGES;

解决了我的问题。

关于mysql - root 密码未保存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43614161/

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