tomcat启动报“Host *** is not allowed to connect to this mysql server”解决方法
在windows系统下,本地连接MySQL没问题,但程序部署到Tomcat后启动时提示无法远程连接MySQL
解决:打开MySQL,执行以下语句:
use mysql
update user set host = '%' where user = 'root';
FLUSH PRIVILEGES;#刷新权限相关表
...
原创
2019-09-18 09:19:08 ·
412 阅读 ·
0 评论