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

Posted polestar

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ERROR 1045 (28000): Access denied for user 'mycat'@'localhost' (using password: YES)相关的知识,希望对你有一定的参考价值。

创建用户:
mysql> grant all on db1.* to [email protected]‘%‘ identified by ‘123456‘;
Query OK, 0 rows affected (0.00 sec)
mysql> flush privlege;

查看:
mysql> select user,host from mysql.user;
+-------+-------------+
| user  | host        |
+-------+-------------+
| mycat | %           |
| root  | 127.0.0.1   |
| repl  | 192.168.2.% |
| root  | ::1         |
|       | localhost   |
| root  | localhost   |
|       | mysql01     |
| root  | mysql01     |
+-------+-------------+
8 rows in set (0.00 sec)

测试
[[email protected] ~]$ mysql -umycat -p123456 -h 127.0.0.1 -P3316
Warning: Using a password on the command line interface can be insecure.
ERROR 1045 (28000): Access denied for user ‘mycat‘@‘localhost‘ (using password: YES)

解决方案:
[[email protected] ~]$ mysql -u root -p123456 -h 127.0.0.1 -P3316
mysql> use mysql
mysql> delete from user where user=‘‘;
mysql>  flush privileges; 

测试登陆成功
[[email protected] ~]$ mysql -umycat -p123456 -h 127.0.0.1 -P3316
mysql>

 

以上是关于ERROR 1045 (28000): Access denied for user 'mycat'@'localhost' (using password: YES)的主要内容,如果未能解决你的问题,请参考以下文章

mysql ERROR 1045 (28000): 错误解决办法

mysql ERROR 1045 (28000): 错误解决办法

mysql ERROR 1045 (28000): 错误解决办法

mysql登录时,ERROR 1045 (28000): 错误解决办法

用grant命令为用户赋权限以后,登录时,出现:ERROR 1045 (28000)

ERROR 1045 (28000): Access denied for user ‘root‘@