mysql 5.7 重置密码
进入mysql数据库,修改数据库的内容
1, use mysql;
2,update user set authentication_string="" where User='root';//设 authentication_string 为空值 ,因为是连接这个加密的东西
先设密码为空
3,update user set plugin="mysql_native_password";
4,flush privileges;
5,quit;
然后重启MySQL。
6,接着在命令行修改root用户密码,
mysqladmin -u root -p password
按提示重设密码
ok。完美连接成功