lamp@lightsailでphpmyadminにアクセスする方法
参考URL
https://qiita.com/Hide-Zaemon/items/c9a6c607955833e251da
1, 最初から入っているらしいけど、http://MyIPAddress/phpmyadmin だとエラーになる
1 |
For security reasons, this URL is only accessible using localhost (127.0.0.1) as the hostname. |
2, 設定ファイルを書き換える。Require localをコメントアウトして追記
1 2 3 4 5 6 7 8 9 10 11 |
sudo vi /opt/bitnami/apache/conf/bitnami/phpmyadmin.conf #Require local <IfVersion < 2.3> Order allow,deny Allow from all Satisfy all </IfVersion> <IfVersion >= 2.3> Require all granted </IfVersion> |
3, apacheを再起動するとアクセス出来る。
1 |
sudo /opt/bitnami/ctlscript.sh restart apache |