码迷,mamicode.com
首页 > 数据库 > 详细

java.sql.SQLException: null, message from server: "Host 'XXX' is not allowed to connect to this MySQL server"

时间:2020-03-18 11:24:16      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:数据   select   show   数据库   mysql   user   sage   步骤   use   

技术图片

 

 原因是:远程服务器不允许你的java程序访问它的数据库。所以,我们要对远程服务器进行设置,使它允许你进行连接。

解决步骤

1、打开mysql控制台,输入:use mysql;

技术图片

 

 2、输入:show tables;

3、输入:select host from user;

技术图片

 

4、输入:update user set host =‘%‘ where user =‘root‘;

 5、重启服务就可以连上了

 

java.sql.SQLException: null, message from server: "Host 'XXX' is not allowed to connect to this MySQL server"

标签:数据   select   show   数据库   mysql   user   sage   步骤   use   

原文地址:https://www.cnblogs.com/killer21/p/12516033.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!