前提・実現したいこと
さくらVPSでMySQL用GUI設定ツール導入(phpMyAdmin)を導入します
発生している問題・エラーメッセージ
phpmyadminをダウンロードし、Apache設定もしましたが、サイトにアクセスできません。
サイトにアクセスすると以下のメッセージが表示されます。
You don't have permission to access /phpmyadmin on this server.
試したこと
vi /etc/httpd/conf.d/phpMyAdmin.conf
でファイルを編集しました。
<Directory /usr/share/phpMyAdmin/> AddDefaultCharset UTF-8 <IfModule mod_authz_core.c> # Apache 2.4 <RequireAny> Require ip 127.0.0.1 Require ip ::1 Require ip 192.168.1.0/24 ← 追加 </RequireAny> </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order Deny,Allow Deny from All Allow from 127.0.0.1 Allow from ::1 Allow from 192.168.1.0/24 ← 追加 </IfModule> </Directory> <Directory /usr/share/phpMyAdmin/setup/> <IfModule mod_authz_core.c> # Apache 2.4 <RequireAny> Require ip 127.0.0.1 Require ip ::1 Require ip 192.168.1.0/24 ← 追加 </RequireAny> </IfModule> <IfModule !mod_authz_core.c> # Apache 2.2 Order Deny,Allow Deny from All Allow from 127.0.0.1 Allow from ::1 Allow from 192.168.1.0/24 ← 追加 </IfModule> </Directory>
上記の設定でダメでした。
ちなみに入力したIPアドレスはさくらVPSでネットワーク情報の標準ホスト名を入力しました。
なお、上記はネット掲載用のサンプルコードなので実際は違う値を入れてます。
この入力したIPアドレスが違うんでしょうか?
補足情報(FW/ツールのバージョンなど)
centOS7
回答1件
あなたの回答
tips
プレビュー