解决MySql数据库提示:1045accessdeniedforuser'root'@'localhost'usingpasswordyes
程序员文章站
2022-05-18 14:34:09
今天想用用mysql 谁知道老提示
1045 access denied for user 'root'@'localhost' using p...
今天想用用mysql 谁知道老提示
1045 access denied for user 'root'@'localhost' using password yes
最后在csdn 上找到了答案
解决:
1. 开始 -->cmd --> net stop mysql (停用mysql服务 没启动的可以省略)
2. 找到安装路径 mysql server 5.1下的my.ini
3. 打开 my.ini 找到 [mysqld] 然后在下面加上
这句: skip_grant_tables (意思好像是 启动mysql服务的时候跳过权限表认证 )
4. 然后就启动数据库修改密码了
开始 --> cmd --> net start mysql (启动mysql服务)---> mysql 回车 ( 如果成功,将出现mysql提示符)
5. 输入use mysql; (连接权限数据库)。( 实验证明,只有在mysql安装目录当前文件夹下打开命运指示符才可以连接my ,在cmd中输入指令: mysql -uroot -p )
6. 改密码:update user set password=password("123") where user="root";(别忘了最后加分号) 。
7. 刷新权限(必须步骤):flush privileges; 。
8. 退出 quit。
9. 将第3 步的 my.ini里的 skip_grant_tables 去掉(启动mysql服务的时候不能让他跳过权限表认证 )
10. 重启mysql ,再进入,使用用户名root和刚才设置的新密码123就可以登录了。
推荐阅读
-
解决MySql数据库提示:1045accessdeniedforuser'root'@'localhost'usingpasswordyes
-
数据库提示:can not connect to mysql server on localhost的解决办法
-
jdbc连接Mysql数据库出现Access denied for user 'root'@'localhost' (using password: YES) 拒绝访问问题解决
-
解决MySql数据库提示:1045accessdeniedforuser'root'@'localhost'usingpasswordyes
-
数据库连接失败:mysql_error:Access denied for user 'root'@'localhost'解决思路
-
数据库连接失败:mysql_error:Access denied for user 'root'@'localhost'解决思路
-
数据库提示:can not connect to mysql server on localhost的解决办法