MySql教程

1130 - Host'XX-xx' is not allowed to connect to this MySQL server

本文主要是介绍1130 - Host'XX-xx' is not allowed to connect to this MySQL server,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

MySQL常见的错误码讲解: https://www.cnblogs.com/henrylinux/p/9746867.html

  • 密码错误:

  • MySQL服务所在主机IP地址错误:

出现上述连接错误主要从以下几个步骤解决

确定目的连接服务器的IP地址

保证目的服务器上的MySQL提供远程连接服务

授权远程访问 :(A->B,则再B计算机的Mysql中以root账户执行以下命令)
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION;
FLUSH PRIVILEGES;

--> 

	
这篇关于1130 - Host'XX-xx' is not allowed to connect to this MySQL server的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!