解决方法,从网上找的,照做就可以,服务器为linux系统:
第一步,修改mysql的my.cnf文件,将“bind-address = 127.0.0.1”改为“bind-address = 0.0.0.0”
第二步,通过ssh做好下操作:
mysql -u root -p
Enter password:
mysql> use mysql
mysql> select user,host from user;
update user set host="%" where user="root" and host="localhost";
mysql> exit
第三步,重启mysql服务:
/etc/init.d/mysql restart