IT. POST LIST

POST ALL LABEL

아파치 데몬 다운현상([error] child process xxxxxxx still did not exit, sending a SIGKILL)

By 때찌때찌맴매 - 12월 03, 2013

[error] child process xxxxxxx still did not exit, sending a SIGKILL



The error “child process xxxxx still did not exit, sending a SIGTERM” means that the child processes were not terminated, and a SIGTERM(Signal: Terminate – default signal to kill a process) was sent.
자식 프로세스가 죽지않아 프로세스를 죽이는 신호를 보냈다.
This error can occur due to various reasons such as running buggy scripts, lack of space/memory, a rewrite loop, etc.
문제는 여러가지가 있는데, 스크립트의 버그, 메모리 문제, 리라이트 루프(a.html로 접속했을때 b.html로 접속하고, b.html에서 a.html로 접속하도록 rewriteRule 등이 설정되어 있을때), 기타 등등이 있습니다.



/etc/init.d/apache restart (service httpd stop) 시 데몬이 중지가 되지 않을시 pkill -9 httpd 명령어르 사용해 강제로 프로세스 종료 후 데몬 재시작 하면 OK

  • Share:

You Might Also Like

0 개의 댓글