Link to home
Start Free TrialLog in
Avatar of Doug Poulin
Doug PoulinFlag for Canada

asked on

Can't connect to mySQL 8.0 using Toplink and mysql connector version 8.0.11

I'm upgrading from MySQL 5.1 to MySQL 8.0.  I have a java project that uses Toplink to connect to the database.  I've updated the jdbc drivers but when I try to connect I get this error "Public Key Retreival is not allowed".  I've set UseSSL to false but I still can't connect.  I'm assuming there must be some new parameters that I also need to set up , but I don't know what they are or where to look for them.
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

You might try

jdbc:mysql://localhost/databasehost?verifyServerCertificate?=false&useSSL=false 

Open in new window


but It's conceivable that Toplink does not yet support 8.0. (Check the docs)
ASKER CERTIFIED SOLUTION
Avatar of Doug Poulin
Doug Poulin
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Good :) Feel free to close the question by accepting your last comment
Avatar of Doug Poulin

ASKER

The solution was kind of obvious once I found the right documentation.