mysql root账户被删除

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

今天有个码友说,哥们我的数据库账号 root账户不小心删除了,怎么办怎么办???

吓死宝宝了,协助恢复,以下为操作记录

1.停止数据库

2、在mysql配置文件my.cnf中添加skip-grant-tables参数到[mysqld]配置块中

3、insert into mysql.user (host, user, password) values ('localhost', 'root', password('****'));

4、flush privileges

5、grant all on *.* to 'root'@localhost

之后修改配置重新启动试试吧

转载于:https://my.oschina.net/u/2370328/blog/1622854

你可能感兴趣的:(mysql root账户被删除)