解决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,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
登录mysql mysql -uroot -p密码 登陆到数据: 执行use mysql; select host,user,password from user; 可以看到user为root,host为localhost的话,说明mysql只允许本机连接,那么外网,本地软件客户端就无法连接了。 调整方法: 执行:update user set host=’%’ where user =‘root’; 执行刷新权限:flush privileges; 可以测试外网连接mysql服务器。
这篇关于解决java.sql.SQLException: null, message from server: “Host ‘xxx’ is not allowed to connect的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!