myysql 不能远程访问的解决办法
Posted 爆烈鼓手
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了myysql 不能远程访问的解决办法相关的知识,希望对你有一定的参考价值。
1.通过navicat或者命令行,将user表中原来host=localhost的改为host=%
命令行方式:
mysql> update user set host = ‘%‘ where host= ‘localhost‘;
2.授权访问给root用户
mysql>grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘password‘ with grant option;
3.刷新mysql的权限配置
mysql> flush privileges;
以上是关于myysql 不能远程访问的解决办法的主要内容,如果未能解决你的问题,请参考以下文章