AH00052: child pid 25043 exit signal Segmentation fault (11)

环境:
CentOS-6.8
Apache-2.4.7

问题描述:
安装完php之后,修改apache主配置文件,添加了如下两行后重启apache访问不到页面

    AddType application/x-httpd-php .php .phtml
    AddType application/x-httpd-php-source .phps

问题排查及解决:
首先查看错误日志(/usr/local/apache2/logs/error_log)
AH00052: child pid 25043 exit signal Segmentation fault (11)
发现与pid 7401的进程有关
查看当前httpd的进程(ps -aux | grep httpd)
AH00052: child pid 25043 exit signal Segmentation fault (11)

尝试重新启动

/usr/local/apache2/bin/httpd -k restart

访问了一下页面,发现恢复正常,日志文件也没有报错

总结:出现这个问题大多数情况是配置文件错误或者模块的冲突,需要耐心查找日志文件和检查配置文件

上一篇:PXE+TFTP+DHCP+Apache2实现网络安装Debian9详解


下一篇:如何在centos下安装apache2服务器