mysql错误 (ERROR 1045 (28000): Access denied for use)的解决

ERROR 1045 (28000): Access denied for user 'xcj'@'localhost' (using password: YES)

mysql出现这样的错误可以这样解决:

1. 以root用户登录
2. use mysql;
3. select c.user,c.host,c.password from user c
4. 看到 xcj用户的host上是否是"%"与'localhost'
如果是%,只能远程登录 ,不能用localhost登录
如果是'localhost'只能本机登录,不能远程登录

5.GRANT ALL PRIVILEGES ON ASP.* TO 'wx'@'localhost' [IDENTIFIED BY 'wx'] WITH GRANT OPTION

GRANT ALL PRIVILEGES ON ASP.* TO 'wx'@'%' [IDENTIFIED BY 'wx'] WITH GRANT OPTION
[]内可以省去

grant ALL PRIVILEGES on * to ASP@'%' identified by 'ASP';


6.最后
flush privileges;一下,让权限立刻生效。


-----之后,两种登录方式都可以 进后了-----


注意:有时候如果输入密码是错误的可以也会出现1045(28000)的错误,在确定密码正确后,才能使用上面的办法解决。

你可能感兴趣的:(mysql错误 (ERROR 1045 (28000): Access denied for use)的解决)