java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)
Searched on Google with the first line of a JAVA stack trace?
We can recommend more relevant solutions and speed up debugging when you paste your entire stack trace with the exception message. Try a sample exception.
Recommended solutions based on your search
Samebug tips
- Expert tip
MySQL doesn't support some types of characters (such as emojis) with the utf8 encoding. You need to be on MySQL 5.5+ and force utf8mb4 (everywhere, client and server). You can do this sending the query "SET NAMES utf8mb4". Check this https://goo.gl/3E2qzg
Make sure you are using InnoDB storage engine and READ-COMMITTED transaction isolation level and increase the database server innodb_lock_wait_timeout variable to about 500.
Solutions on the web
via Google Groups by Daniel Mendez, 1 year ago
via roseindia.net by Unknown author, 1 year ago
via Oracle Community by 574272, 1 year ago
via Stack Overflow by y2k-shubham
, 1 month agovia Stack Overflow by user5620472
, 1 year agovia mysql.com by Unknown author, 2 years ago
java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES)
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1073)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4096)