在MySQL登录时出现Access denied for user 'root'@'localhost' (using password: YES) 拒绝访问

首先解析此英文:ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES);

解析的地方有两处:

①Access denied(拒绝访问);

②using password:NO/YES   (NO:密码错误,YES:密码正确)

 

 

解决方案:
到安装的MySQL的目录下,找my.ini文件;

在[mysqld]后添加skip-grant-tables(使用 set password for设置密码无效,且此后登录无需键入密码)

skip-grant-tables     #在my.ini,[mysqld]下添加一行,使其登录时跳过权限检查

重启MySQL服务器。

登录mysql,键入mysql –uroot –p;直接回车

 

你可能感兴趣的:(mybatis,mysql)