忘记 MySQL Root 密码 – 如何重置?

举报
Tiamo_T 发表于 2021/11/25 14:38:02 2021/11/25
【摘要】 忘记了您的 MySQL 根用户密码?别担心,俺来教你。 当您尝试在不输入密码的情况下登录 root 时,您可能会收到“拒绝访问”消息,因为 MySQL 需要密码。 本文介绍了在忘记旧密码时如何通过设置新的 MySQL 密码来恢复 mysql root 密码。

忘记了您的 MySQL 根用户密码?别担心,俺来教你。

当您尝试在不输入密码的情况下登录 root 时,您可能会收到“拒绝访问”消息,因为 MySQL 需要密码。

本文介绍了在忘记旧密码时如何通过设置新的 MySQL 密码来恢复 mysql root 密码。

当您不记得 root 密码并输入错误密码时,您将收到以下 MySQL 错误消息。

# mysql -u root mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

1. 停止 MySQL 服务器

第一步,使用以下方法之一停止 mysql 服务器。

# service mysql stop

(or)

# /etc/rc.d/init.d/mysql stop

2.在mysqld_safe启动命令中添加--skip-grant-tables

打开mysql启动脚本,添加-skip-grant-tables如下图。


# vi /etc/rc.d/init.d/mysql

Old Line: $bindir/mysqld_safe --datadir=$datadir --pid-file=$server_pid_file $other_args >/dev/null 2>&1 &

New Line: $bindir/mysqld_safe --skip-grant-tables --datadir=$datadir --pid-file=$server_pid_file $other_args >/dev/null 2>&1 &

3.使用--skip-grant-tables启动MySQL服务器

使用 skip-grant-tables 选项启动 mysql 服务器,这将允许任何人无需输入密码即可登录 mysql。

# service mysql start
Starting MySQL.                                            [  OK  ]
[Note: This is using the updated /etc/rc.d/init.d/mysql script]

4. 使用 MySQL Root 用户登录,无需输入密码

由于您已经跳过了授权表,这次当您尝试登录 mysql 时,它不会要求输入密码。

# mysql -u root mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.25-rc-community MySQL Community Server (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>

[Note: MySQL did not ask for any password]

5. 使用 UPDATE 命令将 MySQL Root 密码设置为新密码

在为 mysql root 帐户设置新密码时遵循强密码规则

mysql> UPDATE user SET password=PASSWORD('newpassword') WHERE user='root';
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql>

6. 停止 MySQL 服务器

使用以下方法之一停止 mysql 服务器。

# service mysql stop

(or)

# /etc/rc.d/init.d/mysql stop

7.更新/etc/rc.d/init.d/mysql启动脚本并删除--skip-grant-table

打开mysql启动脚本,删除--skip-grant-tables,如下图。

# vi /etc/rc.d/init.d/mysql

Old Line: $bindir/mysqld_safe --skip-grant-tables --datadir=$datadir --pid-file=$server_pid_file $other_args >/dev/null 2>&1 &

New Line: $bindir/mysqld_safe --datadir=$datadir --pid-file=$server_pid_file $other_args >/dev/null 2>&1 &

8. 启动 MySQL 服务器

不使用skip-grant-tables 选项启动mysql 服务器。这一次当有人尝试登录时,mysql 会要求输入密码。

# service mysql start
Starting MySQL.                                            [  OK  ]

9. 使用新密码登录 MySQL

使用新密码登录到 mysql root 帐户。

# mysql -u root -pnewpassword
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.1.25-rc-community MySQL Community Server (GPL)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql>
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。