Linux

如何解決 Apache 500 內部伺服器錯誤?(重啟、狀態、尾巴……然後呢?)

  • October 15, 2010

這是我到目前為止所做的

[username@VMname /]$ sudo /etc/init.d/httpd restart
[username@VMname /]$ sudo /etc/init.d/httpd restart
Stopping httpd:                                            [  OK  ]
Starting httpd:                                            [  OK  ]
[username@VMname /]$ /etc/init.d/httpd status
httpd (pid  23043) is running...

然後嘗試執行…

tail -f /var/log/httpd/error.log

找不到返回的文件,所以我看了看,這就是我看到的:

[username@VMname /]$ cd /var/log/httpd
access_log  access_log.1  error_log  error_log.1  ssl_access_log  ssl_error_log  ssl_error_log.1  ssl_request_log

任何幫助深表感謝。提前致謝!!

第一的:

tail -f /var/log/httpd/error_log

不是error.log

檢查您的 apache 配置文件中的一行

LogLevel

我會建議

LogLevel error

直到你找出錯誤。警告/調試可能過於冗長

引用自:https://serverfault.com/questions/191202