一。 打开mysql下的my.ini文件
在mysqld下输入 skip-grant-tables(关闭权限)
二。再次使用命令登录 mysql
三。use mysql;使用mysql这个库
四。修改密码命令
update user set password=PASSWORD("123456") where user='root';
五,退出exit,
删除my.ini下的 skip-grant-tables不然外部访问只能通过ip访问
六。重启 mysql
一。 打开mysql下的my.ini文件
在mysqld下输入 skip-grant-tables(关闭权限)
二。再次使用命令登录 mysql
三。use mysql;使用mysql这个库
四。修改密码命令
update user set password=PASSWORD("123456") where user='root';
五,退出exit,
删除my.ini下的 skip-grant-tables不然外部访问只能通过ip访问
六。重启 mysql