美文网首页
本地安装的mysql服务,使用localhost可以连接,ip地

本地安装的mysql服务,使用localhost可以连接,ip地

作者: 釠觋 | 来源:发表于2021-08-23 10:29 被阅读0次

解决办法:

进入mysql命令界面,输入

select host,user from mysql.user;
图1

host字段所有值都是localhost,说明只允许本地访问
设置允许任意IP访问,执行语句:

update mysql.user set host = '%' where user = 'root';
flush privileges;
图2

连接mysql


图3

相关文章

网友评论

      本文标题:本地安装的mysql服务,使用localhost可以连接,ip地

      本文链接:https://www.haomeiwen.com/subject/gpikiltx.html