mysql8.0.27 解决只剩下了information_schema库情况

  1. 先关闭mysql服务
 net stop mysql

2.管理员身份运行cmd,执行下面语句,作用是无需验证权限进入mysql

 mysqld --console --skip-grant-tables --shared-memory

效果:

mysql8.0.27 解决只剩下了information_schema库情况_第1张图片 3.另起一个cmd窗口

show databases;

即可显示所有数据库

4.修改权限,适用于未对root用户做过任何修改情况下

use mysql;
update user set Update_priv='Y' where user='root';
update user set Grant_priv ='Y'where user = 'root';//修改root权限
flush privileges;
grant all privileges on *.* to root@'localhost' identified by '1234' with grant option;//1234为登陆密码
flush privileges;//刷新权限

5.第四部执行错误(已将root对应的host改为%),直接执行

mysql> grant all privileges on *.* to 'root'@'%' with grant option;
mysql> flush privileges;

6.重启mysql服务,按正常登陆即可

你可能感兴趣的:(自我学习,数据库,mysql)