Step 1
How do I list all MySQL users with their authentication methods?
Step 2
I ran it for every MySQL user with mysql_native_password
:
ALTER USER '<user>'@'<host>' IDENTIFIED WITH caching_sha2_password BY '<password>';
How do I list all MySQL users with their authentication methods?
I ran it for every MySQL user with mysql_native_password
:
ALTER USER '<user>'@'<host>' IDENTIFIED WITH caching_sha2_password BY '<password>';