macOS+XAMPP+phpMyAdminでアクセスできなかった時の解決法
概要
macOS で、XAMPP をインストールし、phpMyAdmin を使用する時に、「アクセス禁止!」が表示された時の対処法。
環境
MacOS X Mojave, XAMPP 7.3.6, PHP 7.3.6, Apache 2.4.34, MariaDB 10.4.6
方法1
- XAMPP の「Volumes」タブで、「/opt/lampp」:「mount」を選択
- /opt/lampp/etc/extra/httpd-xampp.confを開く。
# since XAMPP 1.4.3
<Directory "/opt/lampp/phpmyadmin">
AllowOverride AuthConfig Limit
Require local
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</Directory>
20行目付近、Require local
をRequire all granted
に変更する。
# since XAMPP 1.4.3
<Directory "/opt/lampp/phpmyadmin">
AllowOverride AuthConfig Limit
Require all granted
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</Directory>
Apache を再起動すればアクセス出来る。
方法2
localhost:8080 -> 80 (Over SSH)
を選択し、Enable を選択。
これでhttp://localhost:8080/phpmyadmin/
からアクセス出来るようになった。
感想
学校の実習で XAMPP を使用する際に phpMyAdmin にアクセスできなかったので解決策を調べました。これで問題なく授業が受けられそうです。
参考
・macOS+XAMPP+phpMyAdminで「アクセス禁止!」が出る時の対策
・MacのXAMPPでphpMyAdminにアクセス
Author And Source
この問題について(macOS+XAMPP+phpMyAdminでアクセスできなかった時の解決法), 我々は、より多くの情報をここで見つけました https://qiita.com/Shinnopo/items/df0480e2f3bc5ed9465c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .