调试远程的时候,覆盖了本地的权限.导致 本地无法登陆系统表. 远程连接上mysql 执行以下命令恢复. 恢复root 本地管理权限 使用空密码 grant all on *.* to root@'localhost' identified by password '' with grant option; root远程 也可以连接 使用空密码 grant all on *.* to root@'%' identified by password '' with grant optio
打开CMD窗口 net stop mysql //停止MYSQL mysqld -nt --skip-grant-tables //跳过密码检测. mysqld.exe在Bin目录下 然后另外新打开一个cmd窗口 输入mysql 直接回车可以以root权限进入mysql use mysql update user set password=password("新密码") where user="root"; flush privileges; 如果无错误提示,密