Troubleshooting

Error Messages

Mysql installation / Configuration

Message: Unable to load authentication plugin 'caching_sha2_password'.

Solution: https://stackoverflow.com/questions/50387952/how-to-resolve-unable-to-load-authentication-plugin-caching-sha2-password-issu

mysql.exe –u<username> –p
ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '1234';

Last updated