MySQL客户端连接MySQL Server的时候报错:
Connection check failed: Error 1130: Host '127.0.0.1' is not allowed to connect to this MySQL server.
看到网上好多人都是直接将对应的数据库用户的host属性改成'%'。这样其实就会降低了数据库的访问控制。
遇到这样的问题的时候,还有可能是因为开启了skip_name_resolve参数设置。
2021-11-30 05:21:35
MySQL客户端连接MySQL Server的时候报错:
Connection check failed: Error 1130: Host '127.0.0.1' is not allowed to connect to this MySQL server.
看到网上好多人都是直接将对应的数据库用户的host属性改成'%'。这样其实就会降低了数据库的访问控制。
遇到这样的问题的时候,还有可能是因为开启了skip_name_resolve参数设置。