Replies: 2 comments
-
Make
|
Beta Was this translation helpful? Give feedback.
0 replies
-
You may also have to set the path to your data, something like: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Recently I tried to upgrade MySQL to 8.4.0 but it won't run.
I noticed that this line
default_authentication_plugin=mysql_native_password
is always added to my.ini whenever MySQL server is started, even if I have deleted it or commented it out in my.ini
As MySQL 8.4.0 no longer support this syntax, it won't be able to run. The new syntax for MySQL 8.4.0 is
mysql-native-password=ON
Also, this line will force MySQL 8 to use mysql_native_password instead of the recommended caching_sha2_password
How to disable the auto-writing of default_authentication_plugin=mysql_native_password into my.ini?
Beta Was this translation helpful? Give feedback.
All reactions