错误的原因是 5.7版本下的mysql数据库下已经没有password这个字段了,password字段改成了authentication_string 修改密码时需将password改成authentication_string 解决方案 执行命
错误的原因是 5.7版本下的mysql数据库下已经没有password这个字段了,password字段改成了authentication_string
修改密码时需将password改成authentication_string
解决方案
执行命令修改密码
update mysql.user set authentication_string=password('12345678') where user='**';使设置立即生效
mysql> flush privileges;登录验证
mysql -u root -p> 输入密码 (12345678)