web-dev-qa-db-ja.com

Ubuntu 12.04にLampp(XAMPP for Linux 1.8.1)をインストールした後、phpmyadminにアクセスできません

Phpmyadmin (http://127.0.0.1/phpmyadmin) :を開こうとしているときにこのエラーが表示される

`New XAMPP security concept:

 Access to the requested object is only available from the local network.
 This setting can be configured in the file "httpd-xampp.conf".

 If you think this is a server error, please contact the webmaster.

 Error 403
 xser.com
 Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7`

編集:

「httpd-xampp.conf」でこのコードをコメントアウトしましたが、新しい問題が発生しました。

# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|#server-status|server-info))">
    Order deny,allow
    Deny from all
    Allow from ::1 127.0.0.0/8 \
        fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \
        fe80::/10 169.254.0.0/16

    ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>

今、私はこれを見ています-

Access forbidden!

You don't have permission to access the requested directory. There is either no index document or the directory is read-protected.

If you think this is a server error, please contact the webmaster.

Error 403

xser.com
Apache/2.4.3 (Unix) OpenSSL/1.0.1c PHP/5.4.7
6

<Directory "/opt/lampp/phpmyadmin">セクションのhttpd-xampp.confファイルにこの行(「すべてを許可する必要がある」)を追加する必要があります。

変更の外観は次のとおりです。

# since XAMPP 1.4.3
<Directory "/opt/lampp/phpmyadmin">
    AllowOverride AuthConfig Limit
    Order allow,deny
    Require all granted
    Allow from all
</Directory>
10

Sudo /opt/lampp/lampp securityと入力してパスワードをphpmyadminに設定し、ユーザー名としてphpmyadminにログインします-lampp password-your_given_password

2
Aung Zan Baw

XAMPP 1.8.1では、スクリーンショット用のhttpd-xampp.confファイルを編集して、ローカルホストを手動で許可する必要があります link をご覧ください。

1
daksh21ubuntu
  • Ubuntuで

    / opt/lampp/etc/extra(デフォルトの場所)

  • Httpd-xampp.confの編集(編集するにはSudo権限が必要です)

    # since XAMPP 1.4.3
    <Directory "/opt/lampp/phpmyadmin">
        AllowOverride AuthConfig Limit
        Order allow,deny
        Require all granted
        Allow from all
    </Directory>
    
  • Xamppサーバーを再起動します

0
Pranav V R

デフォルトの設定では、これらのIPアドレスへのアクセスが制限されています。

交換してみてください

Allow from ::1 127.0.0.0/8 \
        fc00::/7 10.0.0.0/8 172.16.0.0/12 192.168.0.0/16 \
        fe80::/10 169.254.0.0/16

Allow from All
0
spy