错误现象:
[root@localhost ~]# telnet 192.168.10.130 3306
Trying 192.168.10.130...
Connected to 192.168.10.130.
Escape character is '^]'.
GHost '192.168.10.120' is not allowed to connect to this MySQL serverConnection closed by foreign host
解决方法:
具体原因是权限问题,需要重新设置外部登陆用户权限
mysql> grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;
Query OK, 0 rows affected (0.01 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

mysql> exit

相关文章:

  • 2021-12-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-14
  • 2021-10-22
  • 2021-06-25
  • 2021-12-29
  • 2021-12-20
  • 2021-10-28
相关资源
相似解决方案