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

mysql 远程连接有问问题,无法连接

时间:2019-06-09 18:30:42      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:问问题   denied   word   base   远程   option   use   localhost   sele   

  0X01:

                root@kali:~# mysql -h 192.168.7.106 -u root

                ERROR 1045 (28000): Access denied for user ‘root‘@‘192.168.7.108‘ (using password: NO)

      0X02(解决方法):

    mysql> GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘root‘ WITH GRANT OPTION;

    0X03:查看

    

    MySQL [mysql]> select user,host from user;
    +------------------+----------------+
    | user | host |
    +------------------+----------------+
    | root | % |
    | root | 127.0.0.1 |
    | | localhost |
    | debian-sys-maint | localhost |
    | root | localhost |
    | | ubuntu804-base |
    | root | ubuntu804-base |
  +------------------+----------------+
  7 rows in set (0.00 sec)

mysql 远程连接有问问题,无法连接

标签:问问题   denied   word   base   远程   option   use   localhost   sele   

原文地址:https://www.cnblogs.com/httpssl/p/10994145.html

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