码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2017-09-30 21:02:53      阅读:2464      评论:0      收藏:0      [点我收藏+]

标签:bsp   用户   line   code   secure   ant   0 rows   ide   创建   

创建用户:
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)

标签:bsp   用户   line   code   secure   ant   0 rows   ide   创建   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!