메뉴 건너뛰기

GREATUSER

tech

mysql(mariadb) 접근시 mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client 또는 mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MariaDB client 오류가 발생한다면…   구버전의 mysql 클라이언트가 신 버전의 mysql 서버로 접근하는 경우 좀더 정확히는… mysql서버의 old_passwords 설정이 ”0(off)” 정책으로 운영되어 생성된 계정의 패스워드가 새로운 패스워드 정책을 사용하지만 클라이언트는 이를 지원하지 못하는 버전인 경우에 발생함 접근하고자 하는 유저의 패스워드를 구버전 형태로 변경해주면 된다. (서버의 old_passwords 옵션을 건드릴 필요는 없음…. 필요한 계정에 대해서만 처리해주면 됨) update user set password=old_password('변경할 패스워드') where user='변경 대상 유저'; flush privileges; 변경 대상 유저는 choilha, 변경할 패스워드는 "1234" 라고 한다면 update user set password=old_password('1234') where user='choilha'; 이렇게..   처리하면 됨…

The post Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MariaDB client in /home1/htdocs/apartzm/affisacc/php/acc_tongys.inc.php on line 188ERROR 1251: Client does not smysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MySQL client appeared first on 지락문화예술공작단.




원문출처 : https://jirak.net/wp/warning-mysql_connect-client-not-support-authentication-protocol-requested-server-consider-upgrading-mariadb-client-home1htdocsapartzmaffisaccphpacc_tongys-inc-php-line-188er/
번호 제목 글쓴이 날짜 조회 수
67 Mozilla SSL Configuration Generator 관리자 2016.10.15 47
66 mysql server system variables log_warnings to log_error_verbosity 관리자 2016.10.05 1680
65 [MariaDB] InnoDB: Redo log crypto: failed to decrypt log block 관리자 2016.09.28 73
64 [mysql] Buffered warning: Could not increase number of max_open_files to more than 1024 on centos 관리자 2016.09.08 95
63 Unable to validate certificate chain in aws elb – comodossl 관리자 2016.09.06 159
62 WordPress 4.6 “Pepper” 관리자 2016.08.17 46
61 리눅스 서버의 TCP 네트워크 성능을 결정짓는 커널 파라미터 이야기 – 3편 관리자 2016.08.12 75
60 리눅스 서버의 TCP 네트워크 성능을 결정짓는 커널 파라미터 이야기 – 2편 관리자 2016.08.12 69
59 리눅스 서버의 TCP 네트워크 성능을 결정짓는 커널 파라미터 이야기 – 1편 관리자 2016.08.12 73
58 WordPress 4.6 Release Candidate 관리자 2016.07.28 42
» Warning: mysql_connect(): Client does not support authentication protocol requested by server; consider upgrading MariaDB client in /home1/htdocs/apartzm/affisacc/php/acc_tongys.inc.php on line 188ERROR 1251: Client does not smysql_connect(): Client 관리자 2016.07.26 66
56 WordPress 4.6 Beta 3 관리자 2016.07.14 33
55 mysqlbinlog: unknown variable ‘default-character-set=utf8’ 관리자 2016.07.09 64
54 WordPress 4.6 Beta 1 관리자 2016.06.30 35
53 $_SERVER[‘SERVER_SOFTWARE’]=’Apache’ in wp-config.php 관리자 2016.06.24 49
위로