Forum Moderators: open
Client does not support authentication protocol requested by server; consider upgrading MySQL client
This is a well documented problem I've encountered many times. It has to do with converting the old password algorithm to the new one. Simplest fix,
mysql> SET PASSWORD FOR 'some_user'@'some_host' = OLD_PASSWORD('newpwd');
Documentation [dev.mysql.com]