java.sql.SQLException: null, message from server: “Host ‘xxx’ is not allowed to connect

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.sql.SQLException: null, message from server: “Host ‘xxx’ is not allowed to connect相关的知识,希望对你有一定的参考价值。

java.sql.SQLException: null, message from server: “Host ‘xxx’ is not allowed to connect

2014年06月29日 ⁄ 综合 ⁄ 共 637字 ⁄ 字号    ⁄ 评论关闭

 

 

java.sql.SQLException: null,  message from server: "Host ‘xxx‘ is not allowed to connect to this mysql server":

java.sql.SQLException: Access denied for user ‘root‘@‘xxx.xxx.xxx.xxx‘ at (数据库名)

表示该对象不是远程对象,不能通过该对象远程访问数据

解决:

方案一:改表:

use mysql ;select user,host,password from user;

update user set host = ‘%‘ where user=‘root‘;

方案二:授权法:

例如,你想myuser使用mypassword从任何主机连接到mysql服务器的话。 
GRANT ALL PRIVILEGES ON *.* TO ‘myuser‘@‘%‘ IDENTIFIED BY ‘mypassword‘ WITH GRANT OPTION;

如果你想允许用户myuser从ip为192.168.1.3的主机连接到mysql服务器,并使用mypassword作为密码 
GRANT ALL PRIVILEGES ON *.* TO ‘myuser‘@‘192.168.1.3‘ IDENTIFIED BY ‘mypassword‘ WITH GRANT OPTION;

无论使用哪种方案,请重启Mysql服务。

 

 

http://hi.baidu.com/soutnila/item/5356f2c0002781bf0d0a7bae

以上是关于java.sql.SQLException: null, message from server: “Host ‘xxx’ is not allowed to connect的主要内容,如果未能解决你的问题,请参考以下文章

Oracle DB:java.sql.SQLException:关闭连接

Cause: java.sql.SQLException: 请求的转换无效 ; uncategorized SQLException for SQL []; SQL state [99999]; er

java.sql.SQLException: ORA-00604: 递归 SQL 级别 1 发生错误

Java:Sqlexception:位置不支持的 SQL92 令牌:178

java.sql.SQLException:接近“on”:语法错误问题

java.sql.SQLException:架构“ROOT”不存在