Client does not support authentication protocol 解决方案_PHP教程
Jul 13, 2016 pm 05:27 PM
来源: http://dev.mysql.com/doc/mysql/en/Old_client.html
MySQL 4.1 and up uses an authentication protocol based on a password hashing algorithm that is incompatible with that used by older clients. If you upgrade the server to 4.1, attempts to connect to it with an older client may fail with the following message: shell> mysqlClient does not support authentication protocol requestedby server; consider upgrading MySQL client
To solve this problem, you should use one of the following approaches: Upgrade all client programs to use a 4.1.1 or newer client library. When connecting to the server with a pre-4.1 client program, use an account that still has a pre-4.1-style password. Reset the password to pre-4.1 style for each user that needs to use a pre-4.1 client program. This can be done using the SET PASSWORD statement and the OLD_PASSWORD() function: 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 = some_host AND User = some_user;mysql> FLUSH PRIVILEGES;Substitute the password you want to use for ``newpwd in the preceding examples. MySQL cannot tell you what the original password was, so youll need to pick a new one. Tell the server to use the older password hashing algorithm: Start mysqld with the --old-passwords option. Assign an old-format password to each account that has had its password updated to the longer 4.1 format. You can identify these accounts with the following query: mysql> SELECT Host, User, Password FROM mysql.user -> WHERE LENGTH(Password) > 16;For each account record displayed by the query, use the Host and User values and assign a password using the OLD_PASSWORD() function and either SET PASSWORD or UPDATE, as described earlier.
For additional background on password hashing and authentication, see section 5.5.9 Password Hashing in MySQL 4.1.
来源:http://dev.mysql.com/doc/mysql/en/Old_client.html

인기 기사

인기 기사

뜨거운 기사 태그

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











Oracle 문자셋 수정으로 인한 문자 깨짐 문제에 대한 효과적인 솔루션

MySQL 설치 시 중국어 문자가 왜곡되는 일반적인 원인과 해결 방법

Win11 업그레이드 후 부팅할 수 없나요? 다음 솔루션을 사용해 보세요!

Linux에서 비정상적인 CPU 및 Sys 사용량에 대한 솔루션 살펴보기
