-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm getting ER_NOT_SUPPORTED_AUTH_MODE. Why? #2046
Comments
What is your server version? Mysql 8 switched to different default auth mode which is not yet supported by this library. Possible duplicate of #2002 |
Mysql server is version 8.0.11. |
After looking at a comment on #1962, I can get it to work with what @ruiquelhas has done:
However, it would be good for it to work without plugins. |
It's in progress, see #1962 |
@rivques Thank you so much! You fixed my bug :) |
This line resolve my problem too, ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'YourRootPassword'; |
Hi Emanuel, Did you run this command on MySql Workbench? Andrea |
Thank you. |
When I try to make a basic connection, it gives me this error:
My code is
The text was updated successfully, but these errors were encountered: