0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

RDSにphpMyAdminで接続するが#2005エラーが出てしまう

0
Posted at

何度やっても接続できなかった。
後回しにしてましたが、原因がわかったので記載。

1702162310.png

間違った設定をしてました。

$cfg['Servers'][$i]['host'] = '***.ap-northeast-1.rds.amazonaws.com:3306';

ここはこうではなくて

$cfg['Servers'][$i]['host'] = '***.ap-northeast-1.rds.amazonaws.com';
$cfg['Servers'][$i]['port'] = '3306';

こうです。
イージーなミスです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?