mysql忘记root密码怎么办?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql忘记root密码怎么办?相关的知识,希望对你有一定的参考价值。
有时候忘记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
以上是关于mysql忘记root密码怎么办?的主要内容,如果未能解决你的问题,请参考以下文章