zoukankan      html  css  js  c++  java
  • mysql忘记root帐号和密码,修改root用户名和密码解决方案

      首先找到一个和你安装相同版本的mysql机子(当然,root帐号和密码你肯定要知道),找到安装目录里的data文件夹(如:C:\Program Files\MySQL\MySQL Server 5.0\,data文件夹下的mysql是系统数据库,帐号信息都存放在mysql文件夹里的user表,也就是这三个文件user.MYD,user.frm,user.MYI。),然后到你自己的机子上面停止mysql服务,把上面三个文件覆盖掉你机子上面的这三个文件,启动mysql服务。在开始菜单里运行cmd,进入到mysql安装目录里的bin文件夹(如:C:\Program Files\MySQL\MySQL Server 5.0\bin),然后通过mysql -uroot -p命令进入,运行user mysql进入mysql数据库,最后再用命令:update user set User='yeer',Password=password('123456')更新你要的用户名和密码。最后重起一下mysql服务就搞定了。

    覆盖完文件后的操作过程如下:

    C:\Program Files\MySQL\MySQL Server 5.0\bin>mysql -uroot -p
    Enter password: *****
    Welcome to the MySQL monitor.  Commands end with ; or \g.
    Your MySQL connection id is 2 to server version: 5.0.22-community-nt

    Type 'help;' or '"h' for help. Type '"c' to clear the buffer.

    mysql> use mysql;
    Database changed
    mysql> update user set User='yeer',Password=password('123456');
    Query OK, 1 row affected (0.02 sec)
    Rows matched: 1  Changed: 1  Warnings: 0


  • 相关阅读:
    转载的:关于matlab中princomp的使用说明
    STL容器Vector
    Ubuntu20.04下创建Pycharm桌面图标
    c++和c中const的区别
    内存性能分析\垃圾回收 文章
    jq使用教程
    iOS15适配 UITableView下移22px
    linux 内核头文件(转)
    bjfu1143 小蝌蚪安家 解题报告
    hdu 1874 畅通工程续 flody
  • 原文地址:https://www.cnblogs.com/yeer/p/1419882.html
Copyright © 2011-2022 走看看