You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In MySQL 8, the default authentication plugin has changed from 'mysql_native_password' to 'caching_sha2_password'. The goal is to stay with 'mysql_native_password'.
Also creating users with GRANT is no longer supported.
TODO:
Check the install docs and the code for database user creation
Switch to 'CREATE USER ... IDENTIFIED WITH mysql_native_password
Test with MySQL 8
Test with MySQL 5.7
Test with MySQL 5.6
Maybe test with older MySQL version if they are still relevant.
The text was updated successfully, but these errors were encountered:
In MySQL 8, the default authentication plugin has changed from 'mysql_native_password' to 'caching_sha2_password'. The goal is to stay with 'mysql_native_password'.
Also creating users with GRANT is no longer supported.
TODO:
The text was updated successfully, but these errors were encountered: