Git Product home page Git Product logo

Comments (11)

iambudi avatar iambudi commented on June 26, 2024 3

default_authentication_plugin with mysql_native_password will be deprecated. sha256_password will be default in the future.

Temporary solution:
CREATE USER 'test'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mypassword';

from crystal-mysql.

imdrasil avatar imdrasil commented on June 26, 2024 1

I use mysql 8 with --default-authentication-plugin=mysql_native_password and everything seems good

from crystal-mysql.

clarkyi avatar clarkyi commented on June 26, 2024

I have same question
when run
amber db create
output 'packet 254 not implemented'
my amber version 0.11.3
mysql Ver 8.0.12 for osx10.13 on x86_64
Crystal 0.27.2 (2019-02-05)
LLVM: 6.0.1
Default target: x86_64-apple-macosx
crystal-mysql version 0.5.1

from crystal-mysql.

fernandes avatar fernandes commented on June 26, 2024

@rdp @clarkyi if you could, please, test my branch, the one I opened the PR and give some feedback if works for you

from crystal-mysql.

bararchy avatar bararchy commented on June 26, 2024

Still a thing :( can we fix this?

from crystal-mysql.

iambudi avatar iambudi commented on June 26, 2024

Any update about this? Thank you.

from crystal-mysql.

bcardiff avatar bcardiff commented on June 26, 2024

No that I am aware of.

You need to change the authentication plugin to mysql_native_password which is the old default.

The required steps is to implement the handshake of the password according to the caching_sha2_password auth plugin.

References:

Ideally, there should be a way to specify before hand the public key of the server. And not only the on-demand key exchange.

The branch https://github.com/bcardiff/crystal-mysql/tree/sha2_password can help as a starting point.

from crystal-mysql.

dansbits avatar dansbits commented on June 26, 2024

Any solution for this yet? I'm seeing this error even after updating the plugin to mysql_native_password.

from crystal-mysql.

rdp avatar rdp commented on June 26, 2024

from crystal-mysql.

matthewmcgarvey avatar matthewmcgarvey commented on June 26, 2024

Bump, 4 years and counting

from crystal-mysql.

matthewmcgarvey avatar matthewmcgarvey commented on June 26, 2024

If you run mysql through homebrew on macos like I do, these are the steps I took to get it working:

  1. Open the plist that is used by homebrew start mysql (/usr/local/Cellar/mysql/8.0.31/homebrew.mxcl.mysql.plist was mine)
  2. Add <string>--default-authentication-plugin=mysql_native_password</string> to the ProgramArguments array
  3. Run brew services restart mysql
  4. Start your mysql client mysql -u root -p
  5. Change your password ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; (You can change it back after if you'd like)

After all that, it should work as expected.

from crystal-mysql.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.