ubuntu 修改mysql 5.7数据库密码
1、vi /ect/mysql/debian 查看debain-sys-maint用户的密码
2、登录mysql
4、切换到mysql数据库,更新 user 表:
update user set authentication_string = password('root'), password_expired = 'N', password_last_changed = now() where user = 'root';
在之前的版本中,密码字段的字段名是 password,5.7版本改为了 authentication_string