mysql之windows忘记密码
Posted maoriaty
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql之windows忘记密码相关的知识,希望对你有一定的参考价值。
步骤:
1. 关闭mysql服务 2. mysqld --skip-grant-tables; 3. 新cmd,执行mysql 4. use mysql; 5. update mysql.user authentication_string=password(‘123456‘) where user=‘root‘ and host=‘localhost‘; // set password=password(‘123456‘)在跳过权限下无效 6. flush privileges;
以上是关于mysql之windows忘记密码的主要内容,如果未能解决你的问题,请参考以下文章