MySQL is installed on a Linux server with this configuration:
Which method sets the default authentication to SHA-256 hashing for authenticating user account passwords?
MySQL is installed on a Linux server with this configuration:
Which method sets the default authentication to SHA-256 hashing for authenticating user account passwords?
To set the default authentication to SHA-256 hashing for user account passwords, you need to add default_authentication_plugin=sha256_password in the MySQL configuration file. This configuration changes the default authentication plugin to sha256_password, ensuring that newly created user accounts will use SHA-256 hashing.
D is it