Tại sao tôi luôn gặp lỗi 403 với phpMyAdmin?


9

Tôi đang chạy máy chủ Ubuntu 14.04 LTS và tôi đang cố gắng để phpMyAdmin hoạt động. Bất cứ khi nào tôi mở 192.168.0.xxx/phpmyadminnó ra cho tôi một lỗi 403. Tôi cũng đã cài đặt Wordpress và tôi có thể truy cập mà không gặp vấn đề gì.

Tôi đã thử:

  • Đặt quyền sở hữu thành Apache
  • Khởi động lại máy tính / máy chủ của tôi
  • Đã sử dụng một máy tính khác
  • Gỡ cài đặt / cài đặt lại nó (bao gồm uninstallinstall, purgeinstallinstall --reinstall)
  • Đọc rất nhiều hướng dẫn / câu hỏi AU / bài đăng / blog về cách khắc phục điều này, nhưng không ai trong số họ chỉ cho tôi một giải pháp hợp lệ.

Một điều kỳ lạ mà tôi tìm thấy khi nhìn vào "trang chủ" của trang web (tức là không có /foobarở cuối), nó hiển thị một trình thám hiểm tệp. Tuy nhiên, nó không hiển thị phpMyAdmin. Ngoài ra, nó đã hoạt động vài ngày trước và tôi không nhớ đã thay đổi điều gì. Điều duy nhất có vẻ kỳ lạ về điều này thường là có gì đó với /servIIRC, nhưng đó có thể là cách tôi đã có nó trên một máy chủ khác ...

Lưu ý: không có .htaccesstệp trong /usr/share/phpmyadminthư mục. Tôi đã thấy một số bài báo gợi ý rằng nên có một, nhưng tôi không thể tìm thấy câu trả lời chắc chắn.

/etc/phpmyadmin/apache.conf tệp:

# phpMyAdmin default Apache configuration
Alias /phpmyadmin /usr/share/phpmyadmin
<Directory /usr/share/phpmyadmin>
    Options FollowSymLinks
    DirectoryIndex index.php
    order deny,allow
    #deny from all
    allow from all
    <IfModule mod_php5.c>
            AddType application/x-httpd-php .php

            php_flag magic_quotes_gpc Off
            php_flag track_vars On
            php_flag register_globals Off
            php_value include_path .
    </IfModule>

</Directory>
# Authorize for setup
<Directory /usr/share/phpmyadmin/setup>
 <IfModule mod_authn_file.c>
 AuthType Basic
 AuthName "phpMyAdmin Setup"
 AuthUserFile /etc/phpmyadmin/htpasswd.setup
 </IfModule>
 Require valid-user
</Directory>
#Disallow web access to directories that don't need it
<Directory /usr/share/phpmyadmin/libraries>
   Order Deny,Allow
   Deny from All
</Directory>
<Directory /usr/share/phpmyadmin/setup/lib>
  Order Deny,Allow
  Deny from All
</Directory>

Tệp cấu hình Apache:

# The accept serialization lock file MUST BE STORED ON A LOCAL DISK.
#
Mutex file:${APACHE_LOCK_DIR} default

# PidFile: The file in which the server should record its process
# identification number when it starts.
# This needs to be set in /etc/apache2/envvars
#
PidFile ${APACHE_PID_FILE}

# Timeout: The number of seconds before receives and sends time out.
#
Timeout 300

KeepAlive On

# MaxKeepAliveRequests: The maximum number of requests to allow
# during a persistent connection. Set to 0 to allow an unlimited amount.
# We recommend you leave this number high, for maximum performance.
#
MaxKeepAliveRequests 100

# KeepAliveTimeout: Number of seconds to wait for the next request from the
# same client on the same connection.
#
KeepAliveTimeout 5

# These need to be set in /etc/apache2/envvars
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}

# HostnameLookups
HostnameLookups Off

# ErrorLog: The location of the error log file.
ErrorLog ${APACHE_LOG_DIR}/error.log

# LogLevel: Control the severity of messages logged to the error_log.
# Available values: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the log level for particular modules, e.g.
# "LogLevel info ssl:warn"
#
LogLevel warn

# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

# Include list of ports to listen on
Include ports.conf

# Sets the default security model of the Apache2 HTTPD server. It does
# not allow access to the root filesystem outside of /usr/share and /var/www.
# The former is used by web applications packaged in Debian,
# the latter may be used for local directories served by the web server. If
# your system is serving content from a sub-directory in /srv you must allow
# access here, or in any related virtual host.
<Directory />
        Options FollowSymLinks
        AllowOverride None
        Require all denied
</Directory>

<Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>


# AccessFileName: The name of the file to look for in each directory
# for additional configuration directives.  See also the AllowOverride
# directive.
#
AccessFileName .htaccess

# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
        Require all denied
</FilesMatch>

# The following directives define some format nicknames for use with
# a CustomLog directive.
#
# These deviate from the Common Log Format definitions in that they use %O
# (the actual bytes sent including headers) instead of %b (the size of the
# requested file), because the latter makes it impossible to detect partial
# requests.
#
# Note that the use of %{X-Forwarded-For}i instead of %h is not recommended.
# Use mod_remoteip instead.
#
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

# Include of directories ignores editors' and dpkg's backup files,
# see README.Debian for details.

# Include generic snippets of statements
IncludeOptional conf-enabled/*.conf

# Include the virtual host configurations:
IncludeOptional sites-enabled/*.conf

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

Include /etc/phpmyadmin/apache.conf

(Tôi xin lỗi vì đã bỏ một đoạn văn bản lớn vào đây, nhưng tôi đã làm việc trong khoảng ba giờ và tôi không thể tìm ra cách khắc phục điều này. Tôi rất vui lòng cung cấp thêm bất kỳ tệp nào nếu cần , chỉ để lại nhận xét.)

Điều gì gây ra điều này và làm thế nào tôi có thể sửa chữa nó?

Câu trả lời:


16

Thay đổi một vài dòng sau đây của bạn /etc/phpmyadmin/apache.conftừ đây:

<Directory /usr/share/phpmyadmin>
    Options FollowSymLinks
    DirectoryIndex index.php
    order deny,allow
    #deny from all
    allow from all

Về điều này:

<Directory /usr/share/phpmyadmin>
    Options Indexes FollowSymLinks MultiViews
    DirectoryIndex index.php
    AllowOverride all
    Require all granted

Apache của bạn là 2.4+, vì vậy nó sử dụng Require all grantedthay vì Allow from all.

Chỉ cần một mẹo khác để thả ở đây: bạn có thể xem tệp Apache.log của bạn để tìm hiểu lý do tại sao bạn bị từ chối (lỗi 403), điều này có thể đưa ra manh mối về vấn đề là gì. Tệp error.log thường nằm trong thư mục gốc (thường là / var / www / html).


Làm việc hoàn hảo! Dù sao, tôi đã thử nhìn vào nhật ký (của tôi lúc đó /var/log/apache2/error.log), nhưng nó không mang lại bất kỳ thông tin hữu ích nào AH01630: client denied by server configuration: /usr/share/phpmyadmin. Tôi đoán điều đó cho tôi biết tập tin nào bị hỏng, nhưng nó không hữu ích lắm. Dù sao, cảm ơn một lần nữa :)
Chim cánh cụt vô danh

Thêm Require all grantedlà đủ. Không cần thiết phải cho phép ghi đè hoặc thêm tùy chọn Chỉ mục và MultiViews. Cảm ơn bạn đã đưa tôi đi đúng hướng, +1!
lucaferrario

Cảm ơn bạn rất nhiều vì đã tham khảo nhật ký apache. Bằng cách này tôi phát hiện ra, vấn đề là sự an toàn và không phải là một cấu hình tồi.
Noah Krasser
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.