/etc/mysql/my.cnf
修改
bind-address = 127.0.0.1
为
#允许任何机器访问,也可以设置成固定的IP
bind-address = 0.0.0.0
修改数据库mysql的user表
update user set host = ‘%’ where user = ‘username’;
%代表任何地址
然后重启mysql
service mysql restart
或者
/etc/init.d/mysqld restart
注意:如果linux用户没有my.cnf的写权限时,需要临时增加写权限,但是改完之后必须
需要再移除写权限
chmod a+w my.cnf
chmod a–w my.cnf