Plugin mysql_native_password reported: ''mysql_native_password' is deprecated and will be removed in a future release. Please use caching_sha2_password instead'
You can identify the affected users by running the following query in your MySQL console
SELECT user, host, plugin FROM mysql.user WHERE plugin='mysql_native_password';
Once you identify the users, update their authentication plugin using this command
ALTER USER 'user'@'location' IDENTIFIED WITH caching_sha2_password BY 'password';
FLUSH PRIVILEGES;
If your application or framework (such as an older version of PHP, Node.js, or a specific driver)
does not support caching_sha2_password, you can use sha256_password as an alternative
Change 'mysql_native_password' authentication
Change 'mysql_native_password' authentication
Plugin mysql_native_password reported: ''mysql_native_password' is deprecated and will be removed in a future release. Please u...
Mais vistos
-
Find Users Who Have Never Logged On Use the following PowerShell Command; Get-ADUser -Filter { LastLogonDate -notlike "*" -and En...
-
First you have to configure a wpad site in your IIS Open the proxypac.pac file you have previously created and save as wpad.dat. Copy wpa...
-
Java Keytool Command These commands allow you to generate a new Java Keytool keystore file, create a CSR, and import certificates. A...