解决mysql java.sql.SQLSyntaxErrorException: Access denied for user 'test'@'%' to database 'xxx'

通过程序过着远程工具访问MySQL数据库的时候会出现的问题:java.sql.SQLSyntaxErrorException: Access denied for user ‘test’@’%’ to database ‘htht’
解决mysql java.sql.SQLSyntaxErrorException: Access denied for user 'test'@'%' to database 'xxx'_第1张图片
这个是用户权限的问题,没有远程访问权限时出现这个问题,刚刚安装的myql的root密码账号只有localhost的操作权限
1、mysql -u root -p 登陆进MYSQL;

2、执行以下命令:

GRANT ALL on test.* to 'test'@'%' identified by '123456' with grant option;

以上语句中的第一个test为数据库名,第二个test为用户名,123456为用户密码
如果要给所有库设置,第一个test部分为 on *.* to

3、刷新权限

FLUSH PRIVILEGES;

3、exit;

你可能感兴趣的:(数据库)