访问mysql数据库被拒绝

时间:2024-03-24 22:41:11

当连接mysql数据库报错java.sql.SQLException: Data source rejected establishment of connection, message from server: “Host ‘webserver’ is not allowed to connect to this MySQL server”,这是数据库的配置不支持远程连接造成的。
解决方法:
1.在安装Mysql数据库的服务器上登录root用户:
mysql -P port -h localhost -u root -p
2. 依次执行如下命令:
use mysql;
select host from user where user=‘root’;
查看当前主机配置信息,如果为localhost,执行第三步。
3 执行如下命令,将Host设置为通配符%,便可以进行远程访问。.
update user set host = ‘%’ where user =‘root’
访问mysql数据库被拒绝
4输入exit; 退出MySql模式。
5 重新启动数据库。