We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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 installed mysql with brew install mysql and got version 8.0.12. This caused the following error during mvn spring-boot:run:
brew install mysql
mvn spring-boot:run
java.sql.SQLException: Unable to load authentication plugin 'caching_sha2_password'
which can be googled here: https://stackoverflow.com/questions/50387952/how-to-resolve-unable-to-load-authentication-plugin-caching-sha2-password-issu
The fix for me was to change the SQL user creation statement to:
CREATE USER 'springpong'@'localhost' IDENTIFIED WITH mysql_native_password BY 'springpong';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I installed mysql with
brew install mysql
and got version 8.0.12. This caused the following error duringmvn spring-boot:run
:which can be googled here:
https://stackoverflow.com/questions/50387952/how-to-resolve-unable-to-load-authentication-plugin-caching-sha2-password-issu
The fix for me was to change the SQL user creation statement to:
The text was updated successfully, but these errors were encountered: