有时候忘记mysql的root密码了,怎么办?
这个时候,我们可以修改my.cnf,添加以不检查权限的方式启动,再修改root,最后重启mysql数据库。
(1)service mysql stop
[[email protected] mysql]# service mysql stop
Shutting down MySQL.
(2)vi my.cnf 添加 skip-grant-tables 选项启动
(3)登入mysql,update root的密码
MariaDB [(none)]> update mysql.user set password=password(‘xxxxxx‘) where user=‘root‘;
Query OK, 3 rows affected (0.04 sec)
Rows matched: 3 Changed: 3 Warnings: 0
MariaDB [(none)]> commit;
(4)去掉my.cnf中的skip-grant-tables,service mysql restart
时间: 2024-10-29 19:11:31