mysql不能使用IP连接,可以使用localhost连接
Posted 每天1990
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql不能使用IP连接,可以使用localhost连接相关的知识,希望对你有一定的参考价值。
问题:
本地mysql,使用127.0.0.1可以连接成功,使用具体IP连接报错
ERROR 1130 (HY000): Host ‘10.252.225.125‘ is not allowed to connect to this MySQL server
解决方法:给数据库授权
进入mysql命令行界面,使用命令【grant all privileges on *.* to ‘用户名’@‘IP‘ identified by ‘密码‘;】
grant all privileges on *.* to ‘root‘@‘10.252.225.125‘ identified by ‘123456‘;
以上是关于mysql不能使用IP连接,可以使用localhost连接的主要内容,如果未能解决你的问题,请参考以下文章
MySQL 可以用localhost 连接,但不能用IP连接的问题,局域网192.168.*.* 无法连接mysql
MySQL 可以用localhost 连接,但不能用IP连接的问题解决方法
MySQL 数据库修改访问权限,不能使用ip连接mysql问题处理:Host ‘host.docker.internal‘ is not allowed to connect to this MySQ