gpt4 book ai didi

mysql - 如何找到我的根 MySQL 密码?

转载 作者:IT老高 更新时间:2023-10-28 12:53:45 26 4
gpt4 key购买 nike

我刚刚在 Ubuntu 上安装了 MySQL,root 用户无法登录 :)

如何找回或找出我的密码?使用空白作为密码不起作用。

最佳答案

您可以通过使用 --skip-grant-tables 运行服务器并通过以 root 身份(或使用 sudo)运行以下命令而不使用密码登录来重置 root 密码:

# service mysql stop
# mysqld_safe --skip-grant-tables &
$ mysql -u root
mysql> use mysql;
mysql> update user set authentication_string=PASSWORD("YOUR-NEW-ROOT-PASSWORD") where User='root';
mysql> flush privileges;
mysql> quit
# service mysql stop
# service mysql start
$ mysql -u root -p

现在您应该可以使用新密码以 root 身份登录了。

也可以在重置密码的用户的/home/$USER/.mysql_history/root/.mysql_history中找到重置密码的查询密码,但上述方法将始终有效。

注意:在 MySQL 5.7 之前,该列被称为 password 而不是 authentication_string。将上面的行替换为

mysql> update user set password=PASSWORD("YOUR-NEW-ROOT-PASSWORD") where User='root';

关于mysql - 如何找到我的根 MySQL 密码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5683154/

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