Today I'm pushing my app on heroku, I create the database with cleardb, configure it by using a software (navicat premium) for create tables.
I start my program, which works really well on local side, and when I try to access to my database I get this error :
ER_ACCESS_DENIED_ERROR: Access denied for user 'xxxxxxxx'@'ip-xx-xx-xx-xxx.us-westxxxxxxxxxx' (using password: YES)
I have read that's maybe the port but I defined it like on navicat.
This is my configuration :
connection: {
port : '3306',
host : 'us-westxxxxxxxxxx',
user : 'xxxxxxxx',
password : 'xxxxxxxx',
database : 'xxxxxxxx',
charset :'utf8'
}
My configuration is good so I really don't know where is the error.
Thanks for helping !