좀비 프로세스

Jmnote (토론 | 기여)님의 2013년 2월 27일 (수) 13:56 판 (→‎개요)

1 개요

zombie process, defunct process
좀비 프로세스, 고아 프로세스
  • 부모프로세스가 죽었는데도 남아있는 자식프로세스
  • 종료되다가 멈추어 있는 것이다.
  • 죽이거나 재부팅하면 없어진다...[1]

2 죽여도 안 죽는 경우

[root@jmnote ~]# ps -ef | grep defunct | grep -v grep
testuser 25362 25360  0 Feb26 ?        00:00:00 [check.sh] <defunct>
root     31641 13031  0 Feb25 ?        00:00:00 [jmmon] <defunct>
[root@jmnote ~]# kill -9 25362 31641
[root@jmnote ~]# ps -ef | grep defunct | grep -v grep
testuser 25362 25360  0 Feb26 ?        00:00:00 [check.sh] <defunct>
root     31641 13031  0 Feb25 ?        00:00:00 [jmmon] <defunct>

3 같이 보기

4 주석

  1. 재부팅하면 없어지는 건 맞는데, 죽여도 안 죽는 경우가 있다...

5 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}