-
Notifications
You must be signed in to change notification settings - Fork 19
Authentication plugin not supported: caching_sha2_password #23
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
Comments
Same question,should only appear in mysql8.0. |
@thosakwe @disburden PRs are welcome! |
Support for "caching_sha2_password" has landed: 8dbfe0d I haven't tested it. I will do it soon. If you have time, please test it and let me know. |
It seem still doesn't to work Error 1043 (08S01): Bad handshake |
Still getting this. I have installed MySQL 8.0 for Ubuntu x64 on my DigitalOcean cloud server. Using Dart as a backend with Angel & SQLJocky5. Dart Version
StackTrace
|
my solution: moving to postgres-server and use |
My solution was to configure the MySQL server to use mysql_native_password as the default authentication plugin. I had to find my Add this to my.cnf [mysqld]
default_authentication_plugin=mysql_native_password Then I restarted the MySQL Server and then created a new user, so that it would be using mysql_native_password as it's authentication plugin. After this my dart server was finally able to connect! |
This worked a charm for me. Found my.cnf under /etc/mysql |
This work for me Found homebrew(mysql) my.cnf under /usr/local/etc/ |
Hey! Thanks for all the great work on this package. I'm currently running into an error when I try to connect to database. I just installed MySQL, with a fresh new database named
angel_orm_test
.I'm connecting like this:
Which gives the following error:
I haven't used MySQL in years, so I'm not 100% sure what the cause might be.
The text was updated successfully, but these errors were encountered: