MySQL configuration RSA Key issue

3
I am trying to run my application from a MySQL database that has already been set up however I am running into an issue. I believe I need to set up the connection to allow for public key retrieval but I am not sure where mendix will allow for that. Opening JDBC connection to Some(206.44.11.92:3306) failed with SQLState: S1009 Error code: 0 Message: Could not connect to address=(host=206.44.11.92)(port=3306)(type=master) : RSA public key is not available client side (option serverRsaPublicKeyFile not set) Retrying...(1/4)  
asked
1 answers
0

I fixed by open MySQL workbench then run this command.

 

SET GLOBAL require_secure_transport = 'OFF';

answered