标签:
mysql默认只允许本地连接,也就是说,在安装完mysql后会存在两个root账户,他们的host分别是localhost和127.0.0.1
use mysql;update user set host=‘%‘ where user=‘root‘ flush privileges;这样的就可以了然后再对表给予相应的操作
开启mysql远程连接
原文地址:http://www.cnblogs.com/longzhongren/p/4272836.html