1 Answer
- Newest
- Most votes
- Most comments
2
Amazon RDS doesn't currently support the following MySQL features: Authentication Plugin
https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/MySQL.Concepts.FeatureSupport.html
RDS for MySQL version 8.0.34 and higher use the mysql_native_password plugin. You can't change the default_authentication_plugin setting.
try to execute the following command:
ALTER USER 'your_username'@'%' IDENTIFIED WITH caching_sha2_password BY 'your_new_password';
please accept the answer if it was useful