如何解决 Apache 500 内部服务器错误?(重启、状态、尾部......然后呢?)

如何解决 Apache 500 内部服务器错误?(重启、状态、尾部......然后呢?)

以下是我目前所做的

[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

任何帮助都非常感谢。提前致谢!

答案1

第一的:

tail -f /var/log/httpd/error_log

没有错误日志

检查你的 apache 配置文件中是否有一行

LogLevel

我会建议

LogLevel error

直到你找出错误。warn/debug 可能太冗长

相关内容