MYsql:1045 access denied for user 'root'@'localhost' using password yes 报错问题

来源:互联网 发布:mac 建筑 软件 免费 编辑:程序博客网 时间:2024/05/17 23:22

我采用了其中的一种解决方法。

1.net stop mysql 停用服务

    2.修改${mysql_home}/MySQL Server 5.1目录下的my.ini文件

          [mysqld]下面添加这句:
              skip_grant_tables


    3.把你的${mysql_home}/bin目录加入path路径里边


    4.net start mysql 启动mysql服务

    5.mysql -uroot -p
       Enter password:root


    6.mysql>UPDATE user SET Password=PASSWORD('root') where USER='root';
       mysql>FLUSH PRIVILEGES;
       mysql>exit


    7.删除my.ini中的这句话:skip_grant_tables
       net stop mysql
       net start mysql

       8.可以登录了

     


0 0
原创粉丝点击