看来我的服务器没有错误日志。我到处都找不到它们。在 info.php 文件中没有提到任何错误日志。我尝试了 pico /usr/local/apache/logs/error_log 之类的命令,但当然没有结果。我如何找到 apache 错误日志并查看它们?
谢谢您的帮助
答案1
默认的 apache 错误日志位置,由发行版决定:
RHEL / Red Hat / CentOS / Fedora -/var/log/httpd/错误日志
Debian / Ubuntu -/var/log/apache2/error.log
FreeBSD -/var/log/httpd-error.log
要找到确切的 apache 错误日志文件位置,可以使用 grep 命令:
# grep ErrorLog /usr/local/etc/apache22/httpd.conf
# grep ErrorLog /etc/apache2/apache2.conf
# grep ErrorLog /etc/httpd/conf/httpd.conf
示例输出:
# ErrorLog: The location of the error log file.
# If you do not specify an ErrorLog directive within a
ErrorLog "/var/log/httpd-error.log"
来源。
答案2
要添加已经给出的内容,您可以尝试这个(如果您不确定正在运行什么发行版):
[root@centos ~]# httpd -V
Server version: Apache/2.2.3
Server built: May 4 2011 06:51:15
Server's Module Magic Number: 20051115:3
Server loaded: APR 1.2.7, APR-Util 1.2.7
Compiled using: APR 1.2.7, APR-Util 1.2.7
Architecture: 32-bit
Server MPM: Prefork
threaded: no
forked: yes (variable process count)
Server compiled with....
-D APACHE_MPM_DIR="server/mpm/prefork"
-D APR_HAS_SENDFILE
-D APR_HAS_MMAP
-D APR_HAVE_IPV6 (IPv4-mapped addresses enabled)
-D APR_USE_SYSVSEM_SERIALIZE
-D APR_USE_PTHREAD_SERIALIZE
-D SINGLE_LISTEN_UNSERIALIZED_ACCEPT
-D APR_HAS_OTHER_CHILD
-D AP_HAVE_RELIABLE_PIPED_LOGS
-D DYNAMIC_MODULE_LIMIT=128
-D HTTPD_ROOT="/etc/httpd"
-D SUEXEC_BIN="/usr/sbin/suexec"
-D DEFAULT_PIDLOG="run/httpd.pid"
-D DEFAULT_SCOREBOARD="logs/apache_runtime_status"
-D DEFAULT_LOCKFILE="logs/accept.lock"
-D DEFAULT_ERRORLOG="logs/error_log"
-D AP_TYPES_CONFIG_FILE="conf/mime.types"
-D SERVER_CONFIG_FILE="conf/httpd.conf"
注意 DEFAULT_ERRORLOG 行。