5.6 版本 user 表中密码字段为 password,5.7 版本则为authentication_string。也可 select 查看一下具体字段。
- 打开数据库
use mysql; - 查看 root 用户的表字段
select * from user where user = "root"; - 修改 root 用户密码
update user set authentication_string = password("root1234") where user = "root"; - 刷新 MySQL 配置
flush privileges; - 退出 MySQL
quit