mysql忘记密码

  1. cmd -->cd 安装路径/bin

  2. C:\Program Files\MySQL\MySQL Server 5.6\bin>mysql -hlocalhost -uroot

  3. use mysql;
    update user set password=password('newPwd') where user='root' and host='localhost';
    flush privileges;













本文转自yunlielai51CTO博客,原文链接:http://blog.51cto.com/4925054/1576896,如需转载请自行联系原作者
上一篇:SpringMVC中使用Interceptor拦截器


下一篇:C#基础知识学习 之 ☀️ 特性(Attribute) 的含义和用法