httpd를 시작하려고 할 때 왜 중단됩니까?

httpd를 시작하려고 할 때 왜 중단됩니까?

HTTPD를 시작하려고 하면 다음과 같이 시작됩니다.

    Starting HTTPD
    httpd (pid 32303) already running
    Starting SSH tunnels
    Starting HTTPD
    httpd (pid 32615) already running
    Starting SSH tunnels

그러면 꽤 오래 멈춥니다. error_log 추적을 시도했지만 오류 로그가 업데이트되지 않는 것 같습니다. 로그는 모두 오래되었습니다.

난 어디로 가야 해? 시작하려고 할 때 HTTPD 정지에 대한 많은 정보를 찾을 수 없습니다.

어떤 방향이든 좋을 것 같아요. 미리 감사드립니다!

편집하다:

인스턴스를 사용하여 httpd를 시작하려고 하므로 다음을 통해 시작합니다: /sbin/service ptst str

나는 그것이 패키지 관리자에 의해 설치되었으며 RedHat 7이라고 확신합니다.

고쳐 쓰다:

프로세스 32303 및 32615를 종료했기 때문에 httpd를 시작할 때 아무것도 실행되지 않지만 여전히 정지됩니다. sudo tail -f /opt/logs/error_log를 사용하여 오류 로그를 추적했는데 다음과 같이 중단되었습니다.

    [Tue Aug 27 14:29:22.022047 2019] [core:notice] [pid 1817:tid                         
    140076146927424] AH00094: Command line: '/opt/apache-2.4.37/bin/httpd -f 
    /opt/conf/httpd.conf'
    [Wed Aug 28 09:44:53.318939 2019] [mpm_event:notice] [pid 1817:tid 
    140076146927424] AH00491: caught SIGTERM, shutting down
    [Wed Aug 28 10:09:33.886272 2019] [mpm_event:notice] [pid 3205:tid  
    139902668130112] AH00489: Apache/2.4.37 (Unix) OpenSSL/1.0.2k-fips 
    configured -- resuming normal operations
    [Wed Aug 28 10:09:33.886543 2019] [core:notice] [pid 3205:tid 
    139902668130112] AH00094: Command line: '/opt/apache-2.4.37/bin/httpd -f 
    /opt/conf/httpd.conf'
    [Wed Aug 28 10:36:40.245765 2019] [mpm_event:notice] [pid 3205:tid 
    139902668130112] AH00491: caught SIGTERM, shutting down
    [Wed Aug 28 10:37:21.693187 2019] [mpm_event:notice] [pid 5687:tid 
    140062877488960] AH00489: Apache/2.4.37 (Unix) OpenSSL/1.0.2k-fips 
    configured -- resuming normal operations
    [Wed Aug 28 10:37:21.693447 2019] [core:notice] [pid 5687:tid 
    140062877488960] AH00094: Command line: '/opt/apache-2.4.37/bin/httpd -f 
    /opt/conf/httpd.conf'
    [Wed Aug 28 10:46:07.234149 2019] [mpm_event:notice] [pid 5687:tid 
    140062877488960] AH00491: caught SIGTERM, shutting down
    [Wed Aug 28 10:46:55.445671 2019] [mpm_event:notice] [pid 6452:tid 
    140204271298368] AH00489: Apache/2.4.37 (Unix) OpenSSL/1.0.2k-fips 
    configured -- resuming normal operations
    [Wed Aug 28 10:46:55.445820 2019] [core:notice] [pid 6452:tid 
    140204271298368] AH00094: Command line: '/opt/apache-2.4.37/bin/httpd -f 
    /opt/conf/httpd.conf'

sudo tail -f /var/log/messages 하면 멈추고 다음과 같이 표시됩니다.

    fostunnel: d'utiliser le systeme, le client affirme qu'il est un client                 
    autorise.
    dbus[823]: [system] Activating service name='org.freedesktop.problems' 
    (using servicehelper)
    dbus[823]: [system] Successfully activated service 
    'org.freedesktop.problems'
    su: (to fostunnel) MC on pts/1
    su: (to fostunnel) MC on pts/1
    systemd: Stopping SYSV: Start up the Apache HTTPD server....
    apache: Stopping HTTPD
    systemd: Stopped SYSV: Start up the Apache HTTPD server..
    su: (to fostunnel) MC on pts/1
    su: (to fostunnel) MC on pts/1
    systemd: Reloading.
    systemd: Started Flexible Branding Service.
    systemd: Starting SYSV: Start up the Apache HTTPD server....
    apache: Starting HTTPD
    systemd: Started SYSV: Start up the Apache HTTPD server..

답변1

httpd가 시작될 때 내 ptst 스크립트는 끝나지 않고 루프에 있다는 것이 밝혀졌습니다. 내 인스턴스를 테스트했는데 실제로 httpd가 성공적으로 시작되었습니다.

관련 정보