Error:SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client

WordPressのインストールをしようとしたら、Error:SQLSTATE[HY000] [2054] The server requested authentication method unknown to the clientというエラーが出たので対処法となります。

データベース関連

データベースの情報は以下の通りです

  • ミドルウェア:MySQL
  • バージョン:8.0

ユーザー情報

  • ユーザー名:logw
  • パスワード:nyi9rGK3)*%K&?
  • ホスト名1:locahost
  • ホスト名2:127.0.0.1
  • ポート番号:3306

ホスト名は1でも2でもどちらでも問題ありません。

症状

SSHからの接続はできますが、PHPからの接続ができなくエラーとなります。

1# mysql -u logw -p
2Enter password:上記のパスワードをいれる
3Welcome to the MySQL monitor.  Commands end with ; or \g.
4Your MySQL connection id is 203
5Server version: 8.0.18 MySQL Community Server - GPL
6 
7Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.

問題無く接続できました。

phpから接続

01<html>
02<head><title>PHP TEST</title></head>
03<body>
04 
05<?php
06 
07$dsn = 'mysql:dbname=logw;host=127.0.0.1';
08$user = 'logw';
09$password = 'nyi9rGK3)*%K&?';
10 
11try{
12    $dbh = new PDO($dsn, $user, $password);
13 
14    print('
15');
16 
17    if ($dbh == null){
18        print('接続に失敗しました。
19');
20    }else{
21        print('接続に成功しました。
22');
23    }
24}catch (PDOException $e){
25    print('Error:'.$e->getMessage());
26    die();
27}
28 
29$dbh = null;
30 
31?>
32 
33</body>
34</html>

エラー文: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で設定を確認します。

01# mysql -u root -p
02Enter password:rootのパスワードをいれる
03Welcome to the MySQL monitor.  Commands end with ; or \g.
04Your MySQL connection id is 203
05Server version: 8.0.18 MySQL Community Server - GPL
06 
07Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
08 
09#認証方式を確認する
10mysql> 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だとエラーとなります。今回は既存ユーザーとなるので、既存ユーザーの修正コマンドをいれます。

既存ユーザー修正

1mysql> ALTER USER 'logw'@'localhost' IDENTIFIED WITH mysql_native_password BY 'nyi9rGK3)*%K&?';
2Query OK, 0 rows affected (0.01 sec)

これで設定完了です。
※パスワードは自身の使っているパスワードに置き換えて下さい
中身を確認します

01mysql> 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