MySQL5.7登陆密码遗忘怎么改密码
1.找到安装路径位置的ProgramData【因为MySQL的隐藏文件基本上都在这个文件夹里面】
2.找到my.ini的配置文件打开,找到[mysqld]
然后添加skip-grant-tables【指的是跳过命令登录】
3.登录以后使用:
update user set authentication_string=password("NewPassword") where user="root"修改密码
4.重启MySQL服务
本文来自博客园,作者:许个未来—,转载请注明原文链接:https://www.cnblogs.com/future-panda/p/16492447.html