MySql误删root用户如何恢复

1、停止mysql服务;在mysql安装目录下找到my.ini;在my.ini中找到以下片段[mysqld];另起一行加入代码:skip-grant-tables 并保存;

2、启动mysql服务,并登录mysql(无用户名和密码);

3、执行grant usage on *.* to 'root'@'localhost' identified by '123456' with grant option;添加root用户;

4、给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';commit;

5、执行flush privileges;刷新授权操作;

6、删除my.ini文件中新加的那行代码并重启服务。

posted @ 2019-07-18 15:40  强运可乐  阅读(751)  评论(0编辑  收藏  举报