Caused by: java.sql.SQLException: null, message from server: "Unknown error 1130"

进入到Mysql中,执行以下操作即可
原因:没有授权远程连接。
mysql> use mysql;
mysql> select user, host from user;
mysql> update user set host="%" where user=“root”;
mysql> flush privileges;
mysql> quit;
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_45284133/article/details/106073750