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
Currently, judgels db user need to be created with mysql_native_password in MySQL 8.
mysql_native_password
CREATE USER 'judgels'@'%' IDENTIFIED WITH mysql_native_password BY 'judgels';
mysql 8 change its default authentication from mysql_native_password to caching_sha2_password.
https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password
Upgrading mysql-connector-java will allow seamless connection to the latest MySQL version without the need to set WITH mysql_native_password manually.
WITH mysql_native_password
The text was updated successfully, but these errors were encountered:
Related:
😄 cc: @kadeksuryam
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Currently, judgels db user need to be created with
mysql_native_password
in MySQL 8.mysql 8 change its default authentication from mysql_native_password to caching_sha2_password.
https://dev.mysql.com/doc/refman/8.0/en/upgrading-from-previous-series.html#upgrade-caching-sha2-password
Upgrading mysql-connector-java will allow seamless connection to the latest MySQL version without the need to set
WITH mysql_native_password
manually.The text was updated successfully, but these errors were encountered: