配置mysql远程访问

1、修改数据表

可能是你的帐号不允许从远程登陆,只能在localhost。这个时候只要在 localhost 的那台电脑,登入MySQL后,更改 “MySQL” 数据库里的 “user” 表里的 “Host” 项,从“localhost”改称“%”,%表示所有机器都允许。

[sql] view plain copy
  1. mysql> use mysql  

[sql] view plain copy
  1. mysql> update user set Host='%' where User='root';  

2、授权权限

允许任何主机使用“myuser”账号和“mypwd”密码连接到 MySQL 服务器。

[sql] view plain copy
  1. mysql> GRANT ALL PRIVILEGES ON *.* TO 'myuser'@'%' IDENTIFIED BY 'mypwd' WITH GRANT OPTION;  

即可生效。

[sql] view plain copy
  1. mysql> FLUSH PRIVILEGES;  

通过以上两步走就可以了。
posted @ 2017-01-10 11:23  大海星  阅读(142)  评论(0编辑  收藏  举报