• 1
  • 2
  • 3
  • 4
  • 5
阿里云主机ECS 首 页  »  帮助中心  »  云服务器  »  阿里云主机ECS
ECS Linux系统授权mysql外网访问的处理办法
发布日期:2015-12-29 15:12:51

  在mysql的bin目录下执行:mysql -uroot -p密码 登陆到数据:

  执行use mysql;

  select host,user,password from user;

  可看到user为root,host为localhost的话,说明mysql只允许本机连接,那么外网,本地软件客户端就无法连接了。

  调整方法:

  执行:update user set host='%' where user ='root';

  执行刷新权限:flush privileges;

  可测试外网连接mysql服务器。