当前位置:Gxlcms > 数据库问题 > 【异常】连接MySQL权限异常SQLException: Access denied for user 'root'@'192.168.xxx.xxx' (using password: YES)

【异常】连接MySQL权限异常SQLException: Access denied for user 'root'@'192.168.xxx.xxx' (using password: YES)

时间:2021-07-01 10:21:17 帮助过:23人阅读

IDEA程序访问Mysql,出现权限异常。
SQLException: Access denied for user ‘root‘@‘192.168.119.1‘ (using password: YES)
应该是mysql中的库、表等对特定的用户、特定的ip开放,所以可以修改一下,在mysql中执行:
grant all privileges on *.* to root@‘%‘ identified by ‘123456‘;
表示root用户可以在任何ip都可以访问任何库,密码是123456

生产上,按实际情况而定。

【异常】连接MySQL权限异常SQLException: Access denied for user 'root'@'192.168.xxx.xxx' (using password: YES)

标签:出现   表示   ide   mysq   word   access   mys   程序   idea   

人气教程排行