Apache 在 Ubuntu 14.04 上正常重启时因段错误而崩溃

Apache 在 Ubuntu 14.04 上正常重启时因段错误而崩溃

我管理的其中一台服务器使用Ubuntu 14.04.5 LTSApache 2.4.7运行PHP 7.0.11,并使用PHP's Zend OPcache v7.0.11。值得注意的是,每次运行service apache2 graceful(service apache2 reload)命令时,apache 都会关闭。Apache 错误日志显示以下内容。

[mpm_prefork:notice] [pid 9662] AH00171: Graceful restart requested, doing restart
*** Error in `/usr/sbin/apache2': corrupted double-linked list: 0x00007f9e1ae8a170 ***
[core:notice] [pid 9662] AH00060: seg fault or similar nasty error detected in the parent process   

Apache 配置

#apachectl -V
Server version: Apache/2.4.7 (Ubuntu)
Server built:   Jul 15 2016 15:34:04 
Server's Module Magic Number: 20120211:27  
Server loaded:  APR 1.5.1-dev, APR-UTIL 1.5.3  
Compiled using: APR 1.5.1-dev, APR-UTIL 1.5.3  
Architecture:   64-bit  
Server MPM:     prefork  
  threaded:     no  
    forked:     yes (variable process count)  
Server compiled with....  
 -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=256  
 -D HTTPD_ROOT="/etc/apache2"  
 -D SUEXEC_BIN="/usr/lib/apache2/suexec"  
 -D DEFAULT_PIDLOG="/var/run/apache2.pid"  
 -D DEFAULT_SCOREBOARD="logs/apache_runtime_status"  
 -D DEFAULT_ERRORLOG="logs/error_log"  
 -D AP_TYPES_CONFIG_FILE="mime.types"  
 -D SERVER_CONFIG_FILE="apache2.conf"

在网上搜索了一番后,我唯一能想到的可能是某些 Apache 模块导致了这个问题。其中一篇帖子指出,这个特定的消息也是 Apache 中许多其他内存类型错误的征兆。禁用php7.0后模块问题已解决

但是有人可以在不禁用 apache php 模块的情况下帮助我解决这个问题吗?

提前致谢

相关内容