java.sql.SQLException: Access denied for user
问题 I want to create an user that can access from any hosts to Mysql server I use create user abc@10.10.131.17 identified by 'abc123' and grant all privileges mydb.* to 'abc'@'%'; But when i run client,the error occurs: "java.sql.SQLException: Access denied for user 'abc'@'10.10.0.7' (using password: YES) help me,please! 回答1: One obvious guess would be that you didn't do FLUSH PRIVILEGES; after issuing GRANT statement. Another obvious guess (not sure if typo in the question) is that syntax of