WordPress를 실행할 때 Apache가 "AH00169: Catching SIGTERM"을 종료하는 문제를 해결하는 방법

WordPress를 실행할 때 Apache가 "AH00169: Catching SIGTERM"을 종료하는 문제를 해결하는 방법

환경: debian9+LAMP+wordpress4.9.3, 내 로컬 PC에 구축하고 직접 사용했습니다.

cat /var/log/apache2/error.log
[Mon Feb 05 09:42:09.965635 2018] [mpm_prefork:notice] [pid 1083] AH00163: Apache/2.4.25 (Debian) configured -- resuming normal operations
[Mon Feb 05 09:42:09.965658 2018] [core:notice] [pid 1083] AH00094: Command line: '/usr/sbin/apache2'
[Mon Feb 05 14:41:47.057389 2018] [mpm_prefork:notice] [pid 1083] AH00169: caught SIGTERM, shutting down

오류 로그에는 AH00169 및 AH00163이 많이 있고 일부 AH00094가 있습니다. 매일 거의 40줄의 오류 메시지가 나타납니다.

그것은 나 한 사람이 사용합니다!

apachectl을 사용하여 모든 구성을 확인하십시오.

sudo apachectl configtest
Syntax OK

몇 가지 중요한 구성 파일:

  1. 문서000-default.conf

    cat /etc/apache2/sites-available/000-default.conf
    <VirtualHost *:80>
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html
        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined
    </VirtualHost>
    
  2. 문서apache2.conf

    cat /etc/apache2/apache2.conf
    DefaultRuntimeDir ${APACHE_RUN_DIR}
    PidFile ${APACHE_PID_FILE}
    Timeout 300
    KeepAlive On
    MaxKeepAliveRequests 100
    KeepAliveTimeout 5
    User ${APACHE_RUN_USER}
    Group ${APACHE_RUN_GROUP}
    HostnameLookups Off
    ErrorLog ${APACHE_LOG_DIR}/error.log
    LogLevel warn
    IncludeOptional mods-enabled/*.load
    IncludeOptional mods-enabled/*.conf
    Include ports.conf
    <Directory />
        Options FollowSymLinks
        AllowOverride None
        Require all denied
    </Directory>
    <Directory /usr/share>
        AllowOverride None
        Require all granted
    </Directory>
    <Directory /var/www/>
        Options Indexes FollowSymLinks
        AllowOverride None
        Require all granted
    </Directory>
    AccessFileName .htaccess
    <FilesMatch "^\.ht">
        Require all denied
    </FilesMatch>
    LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
    LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %O" common
    LogFormat "%{Referer}i -> %U" referer
    LogFormat "%{User-agent}i" agent
    IncludeOptional conf-enabled/*.conf
    IncludeOptional sites-enabled/*.conf
    
  3. 파일 "ports.conf"

    cat /etc/apache2/ports.conf
    Listen 80
    <IfModule ssl_module>
        Listen 443
    </IfModule>
    <IfModule mod_gnutls.c>
        Listen 443
    </IfModule>
    

M0DD9.png

에서 Mon Feb 05 15까지 Mon Feb 05 16오류 메시지가 많지 않습니다! 자동으로 다시 시작됩니다.

나는 약 3년 동안 WordPress를 사용해 왔으며 내 WordPress 기반 웹사이트에는 기사가 1500개밖에 없습니다. 사용자는 단 한 명뿐입니다. 인터넷에 공개되지 않은 저입니다.

이 문제는 현재 자주 발생합니다.

2v9Pu.png

관련 정보