开启Mysql远程访问的所有方法
=》
Mysql默认是不可以通过远程机器访问的,通过下面的配置可以开启远程访问.
其实就是两个办法,最终都是为了修改 user 表中 root 对应的 host 字段为 %
1. update user set host=’%’ where user=’root’;
flush privileges;
这种方法不用理会root的密码,经过实际测试,有些情况下执行这条语句会报下面的错误:
ERROR 1062 (23000): Duplicate entry ‘%-root’ for key ‘PRIMARY’
改成这样的就可以执行了
update user set host=’%’ where user=’root’ and host=’localhost’;
然后 刷新权限 flush privileges;
也就是把localhost改成了所有主机
2. grant all on *.* toroot@’%’identified by ‘123456′;
*.* 指定给了所有数据库了。
3.修改/etc/mysql/my.conf,修改bind-address,指定为本机实际IP地址
4、用root登陆mysql执行如下命令
grant all on sonardb.* tosonar@’%’identified by ‘123456′;
grant all on sonardb.* tosonar@localhostidentified by ‘123456′;
sonardb替换为你想访问的数据库名,sonar是你的想使用的用户名,123456替换为你的密码,这样就开启了远程访问功能.