We had a application using version 4 libraries of MySQL to talk to a MySQL 5 database which reported:<br />
Error: Client does not support authentication protocol requested by server; consider upgrading MySQL client
The temporary solution:
SET PASSWORD FOR'some_user'@'some_host' = OLD_PASSWORD('newpwd');


