
WordPressのインストールをしようとしたら、Error:SQLSTATE[HY000] [2054] The server requested authentication method unknown to the clientというエラーが出たので対処法となります。
データベース関連
データベースの情報は以下の通りです
ユーザー情報
- ユーザー名:logw
- パスワード:nyi9rGK3)*%K&?
- ホスト名1:locahost
- ホスト名2:127.0.0.1
- ポート番号:3306
ホスト名は1でも2でもどちらでも問題ありません。
症状
SSHからの接続はできますが、PHPからの接続ができなくエラーとなります。
2 | Enter password:上記のパスワードをいれる |
3 | Welcome to the MySQL monitor. Commands end with ; or \g. |
4 | Your MySQL connection id is 203 |
5 | Server version: 8.0.18 MySQL Community Server - GPL |
7 | Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. |
問題無く接続できました。
phpから接続
02 | <head><title>PHP TEST</title></head> |
07 | $dsn = 'mysql:dbname=logw;host=127.0.0.1' ; |
09 | $password = 'nyi9rGK3)*%K&?' ; |
12 | $dbh = new PDO( $dsn , $user , $password ); |
24 | }catch (PDOException $e ){ |
25 | print ( 'Error:' . $e ->getMessage()); |
エラー文:Error:SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client
となります。phpのバージョンは7.3となります。
原因
MySQL8では、デフォルトの認証方式がcaching_sha2_passwordとなっていますが、PHPのライブラリが対応していないことでエラーとなります。PHPの認証方式はmysql_native_passwordのため、これに戻す事で解決します。
設定確認
まずはSSHで設定を確認します。
02 | Enter password:rootのパスワードをいれる |
03 | Welcome to the MySQL monitor. Commands end with ; or \g. |
04 | Your MySQL connection id is 203 |
05 | Server version: 8.0.18 MySQL Community Server - GPL |
07 | Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. |
10 | mysql> SELECT user, host, plugin FROM mysql.user; |
11 | +------------------+-----------+-----------------------+ |
12 | | user | host | plugin | |
13 | +------------------+-----------+-----------------------+ |
14 | | logw | localhost | caching_sha2_password | |
15 | | mysql.infoschema | localhost | caching_sha2_password | |
16 | | mysql.session | localhost | caching_sha2_password | |
17 | | mysql.sys | localhost | caching_sha2_password | |
18 | | root | localhost | mysql_native_password | |
19 | +------------------+-----------+-----------------------+ |
20 | #認証方式がcaching_sha2_passwordとなっています。 |
認証方式が違うので、PHPだとエラーとなります。今回は既存ユーザーとなるので、既存ユーザーの修正コマンドをいれます。
既存ユーザー修正
1 | mysql> ALTER USER 'logw' @ 'localhost' IDENTIFIED WITH mysql_native_password BY 'nyi9rGK3)*%K&?' ; |
2 | Query OK, 0 rows affected (0.01 sec) |
これで設定完了です。
※パスワードは自身の使っているパスワードに置き換えて下さい
中身を確認します
01 | mysql> SELECT user, host, plugin FROM mysql.user; |
02 | +------------------+-----------+-----------------------+ |
03 | | user | host | plugin | |
04 | +------------------+-----------+-----------------------+ |
05 | | logw | localhost | mysql_native_password | |
06 | | mysql.infoschema | localhost | caching_sha2_password | |
07 | | mysql.session | localhost | caching_sha2_password | |
08 | | mysql.sys | localhost | caching_sha2_password | |
09 | | root | localhost | mysql_native_password | |
10 | +------------------+-----------+-----------------------+ |
無事に変更されました。これで接続できます
個人支援・寄付について
サイトラボでは個人支援・寄付を受けております。ご協力いただける方はお願いいたします。当サイトではビットコインで受け付けております。
- ビットコイン:3LHnADwZwUbic2L45EnVJEykiG6KfbqrwS