1.
修改密码提示 ERROR 1054 (42S22): Unknown column ''password'' in ''field list''
错误原因:mysql数据库下已经没有password这个字段了,password字段改成了authentication_string。
解决方法:
- 从Mysql解压路径中找到my.ini配置文件,将其中的skip-grant-tables注释去掉,如果没有就自己加上去(一般都有的),如图:
- 在mysql命令行下执行以下命令(password修改为自己的密码即可):
mysql> update mysql.user set authentication_string=PASSWORD('password') where Use r='root';
结果为这样:
Query OK, 1 row affected, 1 warning (0.15 sec) Rows matched: 1 Changed: 1 Warnings: 1
- 运行完回到mysql解压路径下,将my.ini配置文件中的skip-grant-tables再次注释掉(在前面加个#就行了)
- 最后,重启MYSQL。
- OK