首页 > 数据库技术 > 详细

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

时间:2017-09-30 20:26:54      阅读:1350      评论:0      收藏:0      [点我收藏+]
创建用户:
mysql> grant all on db1.* to mycat@‘%‘ 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)

测试
[mysql@mysql01 ~]$ 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)

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

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

 

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

原文:http://www.cnblogs.com/polestar/p/7615937.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!