1、打开mysql.exe所在的文件夹,复制路径地址
2、打开cmd命令提示符,进入上一步mysql.exe所在的文件夹
3、输入mysql登录数据库
4、输入use mysql, 进入mysql
5、更改root密码,输入update user set password=password('123456') where user='root' and host='localhost';
6、若报错 出现ERROR 1054 (42S22): Unknown column 'password' in 'field list',是因为mysql数据库下已经没有password这个字段了,password字段改成了 authentication_string
只需要将password改成authentication_string就好。