mysql中的root账户不小心删除了,怎么恢复root用户

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql中的root账户不小心删除了,怎么恢复root用户相关的知识,希望对你有一定的参考价值。

1.停止数据库,并在mysql配置文件my.cnf中添加skip-grant-tables参数到[mysqld]配置块中
执行以下命令:./mysql.server stop

2.启动数据库,添加root用户,并授予权限,启动数据库后,可以以密码登陆,并插入一条添加用户名为root的命令,命令执行如下:
1,./mysql.server start
2,./mysql -p
3,insert into user set user=’root’,ssl_cipher=”,x509_issuer=”,x509_subject=”;
添加完成后,对该root用户更新权限,更新权限命令如下:

update user set Host='localhost',select_priv='y', insert_priv='y',update_priv='y', Alter_priv='y',delete_priv='y',create_priv='y',drop_priv='y',reload_priv='y',shutdown_priv='y',Process_priv='y',file_priv='y',grant_priv='y',References_priv='y',index_priv='y',create_user_priv='y',show_db_priv='y',super_priv='y',create_tmp_table_priv='y',Lock_tables_priv='y',execute_priv='y',repl_slave_priv='y',repl_client_priv='y',create_view_priv='y',show_view_priv='y',create_routine_priv='y',alter_routine_priv='y',create_user_priv='y' where user='root';

执行完成后,执行quit 退出数据库。

3.重启数据库并更新root密码
执行完添加与更新root用户权限后,可以使用命令:

./mysql.server restart 来重启数据库
利用./mysql -p 命令无密码登陆进入数据库,执行以下命令:
update mysql.user set password=password('newpassword') where user='root'
#将password()中的newpassword字符更改为你自己的密码
执行完成后,记得刷新权限:

4.注释掉skip-grant-tables参数,重启数据库
权限刷新完成后,修改mysql的配置文件my.cnf,注释或删除掉添加的skip-grant-tables参数,然后利用命令:

./mysql.server restart 重启数据库即可
flush privileges;
5.重启MYSQL就可以使用ROOT用户了。
参考技术A 在后台登录,用mysqladmin-u root passowrd('密码');的时候提示mysqladmin: Can't turn off logging;error: 'Access denied; you need the SUPER privilege for thisoperation'以前回答过这个问题,但是现在搜索不到了,再写一次吧。用了 --skip-grant-tables 后,在 flush privileges 之前是无法使用 grant命令的。按下列步骤建立 root 用户:insert into mysql.user (host, user, password) values ('localhost','root', password('密码'));flush privileges;本回答被提问者采纳

Mark一下 mysql 误删除root用户的解决方法

今天学习mysql用户管理,不小心将mysql.user表中的root用户给删掉了,然后就无法登录mysql了,网上找到了linux下的解决方法,我做了简单的修改,改成了我的windows版,恢复方法如下:

1、关闭mysql服务
net stop mysql 或者 wamp工具关闭
2、启动无需验证用户的特权使用模式
切换到mysql的bin目录,执行mysqld  --console --skip-grant-tables
3、使用root用户登录(没有密码),重新授权
grant all privileges on *.* to [email protected]‘localhost‘ identified by ‘密码‘ with grant option;
flush privileges;
exit
注:如果grant 授权报错:ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement,请先执行一次flush privileges;,然后再grant授权即可。
4、退出特权模式(Ctrl+C)
5、正常启动mysql,即可恢复使用
 
网上看到的linux的恢复办法
1、关闭mysql
/etc/init.d/mysql stop
2、启动无需验证用户的特权使用模式
/usr/local/mysql/bin/mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
3、使用root用户登录(没有密码),重新授权
mysql -uroot
grant all privileges on *.* to [email protected]‘localhost‘ identified by ‘密码‘ with grant option;
flush privileges;
exit
4、重启mysql服务,即可恢复使用
/etc/init.d/mysql restart

以上是关于mysql中的root账户不小心删除了,怎么恢复root用户的主要内容,如果未能解决你的问题,请参考以下文章

不小心删除了linux mint的通知区域怎么办?(上网icon)

我把mysql 数据库里的用户名 root 不小心删除了

我不小心禁用了admin账户而创建了一个受限账户啥都不能用,怎么才能恢复啊

不小心执行 rm -f,该如何恢复?

不小心删掉了mysql数据库怎么办

Linux下MySQL中的root账户误删除