Fix: Passwort authentication plugin#189
Merged
mleutenegger merged 1 commit intosyntro-opensource:masterfrom Jan 27, 2025
Merged
Fix: Passwort authentication plugin#189mleutenegger merged 1 commit intosyntro-opensource:masterfrom
mleutenegger merged 1 commit intosyntro-opensource:masterfrom
Conversation
The `mysql_native_password` plugin was deprecated in 8.0.34, is disabled as of 8.4, and will be removed completely beginning from mySQL 9.0. Due to the disabling, the plugin cannot be loaded using `default-authentication-plugin` and must instead be re-enabled using the `--mysql-native-password=ON`. > MySQL native password authentication changes. Beginning with MySQL 8.4.0, the deprecated mysql_native_password authentication plugin is no longer enabled by default. To enable it, start the server with --mysql-native-password=ON (added in MySQL 8.4.0), or by including mysql_native_password=ON in the [mysqld] section of your MySQL configuration file (added in MySQL 8.4.0). [Source](https://dev.mysql.com/doc/refman/8.4/en/mysql-nutshell.html)
mleutenegger
added a commit
that referenced
this pull request
Jan 27, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The
mysql_native_passwordplugin was deprecated in 8.0.34, is disabled as of 8.4, and will be removed completely beginning from mySQL 9.0.Due to the disabling, the plugin cannot be loaded using
default-authentication-pluginand must instead be re-enabled using the--mysql-native-password=ON.