AWS llightsail Lamp環境でPHPMyAdminを開きたい
- 2021.06.26
- エンジニア
参考サイト
https://qiita.com/Hide-Zaemon/items/c9a6c607955833e251da
コマンドプロンプト(ターミナル)を開き、下記コマンドを実行します。
vi /opt/bitnami/apache/conf/bitnami/phpmyadmin.conf
キーボードの「i」を押してinsertモードに切り替えます。
ファイルの内容を以下コードに書き換え、保存します。
保存は「esc」を押し、「:w」を押し、「:q」でできます。
Alias /phpmyadmin "/opt/bitnami/phpmyadmin"
<Directory "/opt/bitnami/phpmyadmin">
Options -Indexes +FollowSymLinks -MultiViews
#AllowOverride All
AllowOverride None
#Require local
<IfVersion < 2.3>
Order allow,deny
Allow from all
Satisfy all
</IfVersion>
<IfVersion >= 2.3>
Require all granted
</IfVersion>
ErrorDocument 403 "For security reasons, this URL is only accessible using localhost (127.0.0.1) as the hostname."
# AuthType Basic
# AuthName phpmyadmin
# AuthUserFile "/opt/bitnami/apache/conf/users"
# Require valid-user
</Directory>
変更後、下記コマンドでApacheを再起動します。
sudo /opt/bitnami/ctlscript.sh restart
その後、http://[IPアドレス]/phpmyadminを開いたら、PHPMyAdminのログイン画面が表示されるかと思います。
-
前の記事
Lamp環境で画像がアップロードできない 2021.06.26
-
次の記事
mac ウィンドウ切り替えショートカット 2023.05.04