java远程连接数据库

我在eclipse运行报的错,没报错就不管了。。。。

null, message from server: "Host '202.197.100.120' is not allowed toconnect to this MySQL server"

 

在服务器:

一:打开mysql控制台,输入:

1 use mysql;

2

3 show tables;

java远程连接数据库java远程连接数据库

二:输入:

1 select host from user;

2

3 update user set host ='%' where user='root';

java远程连接数据库java远程连接数据库
如果报错:

MySQL> update user set host='%' where user = 'root'; 
ERROR 1062(23000): Duplicate entry '%-root' for key 'PRIMARY' 
然后查看了下数据库的host信息如下: 
MySQL> select host from user where user = 'root'; 
+-----------------------+ 
| host | 
+-----------------------+ 
| % | 
| 127.0.0.1| 
|localhost.localdomain | 
+-----------------------+ 
3 rows in set(0.00 sec) 
host已经有了%这个值,所以直接运行命令: 
复制代码 代码如下:


MySQL>flush privileges; 

 

相关文章: