平台Windows,Linux未测试
从官网下载的MySQL5.7.16 64位,配置好MySQL之后由于root密码为空所以我去修改MySQL的root密码,先用
mysql -uroot -p进入数据库。
使用
use mysql;使用mysql数据库,然而当我用
update user set password = password('mysql') where user='root';修改MySQL的root密码时提示出错
ERROR 1054 (42S22): Unknown column 'password' in 'field list'懵逼,于是使用
show create table user;查看用户表,发现果然是没有password列,取而代之的是authentication_string列,于是尝试使用
update user set authentication_string = password("mysql") where user='root';修改,提示成功
退出,重启MySQL服务
再次登录,并使用修改authentication_string之后的密码,成功进入。