java.sql.SQLException: null, message from server: "Host 'xxx' is not allowed to connect
可能是数据库不能被原创访问,只能是localhost访问。修改表:use mysql ;select user,host,password from user;update user set host = '%' where user='root';
·
可能是数据库不能被原创访问,只能是localhost访问。
修改表:
use mysql ;
select user,host,password from user;
update user set host = '%' where user='root';
更多推荐
已为社区贡献5条内容
所有评论(0)