AWS EC2 Bitnami の設置済みの phpMyAdmin にアクセスしようとすると『For security reasons, this URL is only accessible using localhost (127.0.0.1) as the hostname.』とか言われてアクセスできません。
ssh でアクセスして、設定ファイルを書き換えます。
$ vi /opt/bitnami/apps/phpmyadmin/conf/httpd-app.conf
以下のように書き換えます。赤字は追加行、青字はコメントアウト行です。
<IfVersion < 2.3 > Order allow,deny #Allow from 127.0.0.1 Allow from all Satisfy all </IfVersion> <IfVersion >= 2.3> #Require local Require all granted </IfVersion>
保存して Apache を再起動。
$ sudo /opt/bitnami/ctlscript.sh restart apache
以上でOK。ほとんど以下のサイトを参考にやりました。感謝。
参考 AWS:bitnami RedmineのphpMyAdminアクセス方法 – かきスタンプ
公開時には設定を元に戻しておくのが良い。