Client does not support authentication protocol requested by server; consider upgrading MySQL client
위의 문제점을 해결방안...
1. 모든 Client 프로그램을 4.1이상으로 업그레이드한다.
2. 사용하려는 계정을 4.1 이전 Client 프로그램과 통신이 가능한 이전 비밀번호 체계로 변경한다.
mysql> SET PASSWORD FOR
-> 'some_user'@'some_host' = OLD_PASSWORD('newpwd');
Alternatively, use UPDATE and FLUSH PRIVILEGES:
mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd')
-> WHERE Host = 'DBhost' AND User = 'DBuser';
mysql> FLUSH PRIVILEGES;
3. --old-passwords 옵션으로 서버를 이전비밀번호 체계로 실행한다.