error shown while mysql database connect with mendix

0
Opening JDBC connection to Some(remotemysql.com) failed with SQLState: 28000 Error code: 1045 Message: Could not connect: Access denied for user 'ihLxchkIx'@'106.51.49.44' (using password: YES) Current charset is UTF-8. If password has been set using other charset, consider using option 'passwordCharacterEncoding' Retrying… these type of  error shown while connecting with mysql database in mendix  
asked
2 answers
0

Some obvious questions: Did you doublecheck the password that you pass along? Are you in the process of setting this up or has this connection been operational a long time upto now? Have you contacted (or are you) the administrator of the database you try to connect to?

answered
0

Try this:

use mysql;

alter user 'root'@'localhost' identified with mysql_native_password by '********';

flush privileges;

answered