通过查询Client 端的密码进行登录:
通过用户debian-sys-maint登录修改重置root用户的密码:
mysql> update mysql.user set authentication_string=password('root') where user='root' and Host ='localhost';
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 1
mysql>
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
至此,可用新的密码进行登录。
网友评论