MySQL 8.0.35 and mysql_native_password
I am currently using MySQL 8.0.33 and am planning to upgrade to version 8.0.35.
In my configuration file (my.cnf) I have set:
default_authentication_plugin=mysql_native_password.
According to the MySQL 8.0.35 release notes found at
https://dev.mysql.com/doc/relnotes/mysql/8.0/en/news-8-0-35.html, it is mentioned that "mysql_native_password now replaces caching_sha2_password as the default authentication method when the server does not support pluggable authentication."
I typically add users using the following command:
CREATE USER 'username'@'%' IDENTIFIED WITH mysql_native_password BY 'password';
Given this information, I am concerned about whether there will be any issues logging in with these accounts after upgrading to MySQL 8.0.35.
Subject
Views
Written By
Posted
MySQL 8.0.35 and mysql_native_password
2074
December 09, 2023 07:00AM
627
February 20, 2024 03:15PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.