Linux下Mysql数据库忘记root
Posted djrLog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下Mysql数据库忘记root相关的知识,希望对你有一定的参考价值。
系统环境:Red Hat Enterprise Linux Server 6
1.停止mysqld服务
[[email protected] huage]# service mysqld stop
2.以跳过授权的方式启动mysql
[[email protected] huage]# mysqld_safe --skip-grant-tables &
3.以root用户登录mysql
[[email protected] huage]# mysql -u root
4.进入mysql数据库
mysql> use mysql
5.更新mysql数据库中的user表的root的password字段
mysql> update user set password=PASSWORD("new_password") where User="root";
6.刷新权限,使其立即生效,之后退出mysql,并重新启动mysql
mysql> flush privileges;
mysql> quit
[[email protected] huage]# service mysqld restart
以上是关于Linux下Mysql数据库忘记root的主要内容,如果未能解决你的问题,请参考以下文章