Mysql 连接错误 ERROR 1045 (28000): Access denied for user


  1. 从192.168.111.99上连接远程数据的时候报错:

  2. [mysql@LVS01 mysql_5621]$ mysql -uroot -p123 -h192.168.111.10 -P 5621
  3. Warning: Using a password on the command line interface can be insecure.
  4. ERROR 1045 (28000): Access denied for user 'root'@'192.168.111.99' (using password: YES


  5. 查看远程主机权限:

  6. mysql> use mysql;
  7. Database changed
  8. mysql> select user,host,password from user;
  9. +-------+----------------+-------------------------------------------+
  10. | user | host | password |
  11. +-------+----------------+-------------------------------------------+
  12. | root | localhost | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  13. | root | mysql-svr1 | |
  14. | root | 127.0.0.1 | |
  15. | root | ::1 | |
  16. | repl | 192.168.110.20 | *A424E797037BF97C19A2E88CF7891C5C2038C039 |
  17. | repl | 192.168.111.20 | *A424E797037BF97C19A2E88CF7891C5C2038C039 |
  18. | repl | 192.168.111.30 | *A424E797037BF97C19A2E88CF7891C5C2038C039 |
  19. | repl | 192.168.111.10 | *A424E797037BF97C19A2E88CF7891C5C2038C039 |
  20. | user1 | % | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  21. | root | 192.168.111.20 | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  22. | root | 192.168.111.30 | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  23. | root | 192.168.111.10 | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  24. | admin | 192.168.111.10 | *4ACFE3202A5FF5CF467898FC58AAB1D615029441 |
  25. | root | 192.168.111.% | |
  26. | root | 192.168.111.99 | |
  27. | root | % | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  28. +-------+----------------+-------------------------------------------+
  29. 16 rows in set (0.00 sec)

  30. 发现已经给192.168.111.99授权了,可为什么还是连不上?

  31. 和192.168.111.99相关的权限是下面几行:


  32. | root | 192.168.111.% | |
  33. | root | 192.168.111.99 | |
  34. | root | % | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |

  35. 尝试使用空密码登陆成功:

  36. [mysql@LVS01 mysql_5621]$ mysql -uroot -h192.168.111.10 -P 5621
  37. Welcome to the MySQL monitor. Commands end with ; or \g.
  38. Your MySQL connection id is 20216
  39. Server version: 5.6.21-log Source distribution
  40. Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
  41. Oracle is a registered trademark of Oracle Corporation and/or its
  42. affiliates. Other names may be trademarks of their respective
  43. owners.
  44. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  45. mysql>

  46. 删除密码为空的用户:

  47. mysql> drop user root@'192.168.111.%';
  48. Query OK, 0 rows affected (0.31 sec)
  49. mysql> drop user root@'192.168.111.99';
  50. Query OK, 0 rows affected (0.00 sec)

  51. mysql> select user,host,password from user;

  52. +-------+----------------+-------------------------------------------+
  53. | user | host | password |
  54. +-------+----------------+-------------------------------------------+
  55. | root | localhost | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  56. | root | mysql-svr1 | |
  57. | root | 127.0.0.1 | |
  58. | root | ::1 | |
  59. | repl | 192.168.110.20 | *A424E797037BF97C19A2E88CF7891C5C2038C039 |
  60. | repl | 192.168.111.20 | *A424E797037BF97C19A2E88CF7891C5C2038C039 |
  61. | repl | 192.168.111.30 | *A424E797037BF97C19A2E88CF7891C5C2038C039 |
  62. | repl | 192.168.111.10 | *A424E797037BF97C19A2E88CF7891C5C2038C039 |
  63. | user1 | % | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  64. | root | 192.168.111.20 | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  65. | root | 192.168.111.30 | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  66. | root | 192.168.111.10 | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  67. | admin | 192.168.111.10 | *4ACFE3202A5FF5CF467898FC58AAB1D615029441 |
  68. | root | % | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
  69. +-------+----------------+-------------------------------------------+
  70. 14 rows in set (0.00 sec)
  71. mysql>

  72. 再次使用密码登陆成功:

  73. [mysql@LVS01 mysql_5621]$ mysql -uroot -p123 -h192.168.111.10 -P 5621
  74. Warning: Using a password on the command line interface can be insecure.
  75. Welcome to the MySQL monitor. Commands end with ; or \g.
  76. Your MySQL connection id is 20312
  77. Server version: 5.6.21-log Source distribution
  78. Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
  79. Oracle is a registered trademark of Oracle Corporation and/or its
  80. affiliates. Other names may be trademarks of their respective
  81. owners.
  82. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
  83. mysql>

  84. 总结:
  85. 出现这个错误的原因是同一个用户有不同主机范围的权限时,按最匹配的一个主机验证权限。
  86. 也就是说从192.168.111.99登陆服务器时,验证顺序为:
  87. root@'192.168.111.99'
  88. root@'192.168.111.%'
  89. root@'%'

  90. 参考文档:
  91. http://dev.mysql.com/doc/refman/5.7/en/connection-access.html
  92. When multiple matches are possible, the server must determine which of them to use. It resolves this issue as follows:

  93. Whenever the server reads the user table into memory, it sorts the rows.

  94. When a client attempts to connect, the server looks through the rows in sorted order.

  95. The server uses the first row that matches the client host name and user name.

  96. The server uses sorting rules that order rows with the most-specific Host values first. Literal host names and IP addresses are the most specific. (The specificity of a literal IP address is not affected by whether it has a netmask, so 192.168.1.13 and 192.168.1.0/255.255.255.0 are considered equally specific.) The pattern '%' means “any host” and is least specific. The empty string '' also means “any host” but sorts after '%'. Rows with the same Host value are ordered with the most-specific User values first (a blank User value means “any user” and is least specific). For rows with equally-specific Host and User values, the order is indeterminate.

  97. 建议:
  98. (1)用户授权时,按最小主机范围授权,并且赋予密码,只授权一次。
  99. (2)如果将来主机范围变化,重新授权时可删除旧授权,否则可能因为两次授权密码不同导致类似问题。

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/29100640/viewspace-2078153/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/29100640/viewspace-2078153/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值