From 744fb5590d216b19800e86144fdf6b8d6fd1cc31 Mon Sep 17 00:00:00 2001 From: Claude-51124 Date: Fri, 19 Sep 2025 20:45:11 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20Docker=20=EC=84=9C=EB=B9=84=EC=8A=A4=20?= =?UTF-8?q?=EC=A2=80=EB=B9=84=20=ED=94=84=EB=A1=9C=EC=84=B8=EC=8A=A4=20?= =?UTF-8?q?=EB=B0=A9=EC=A7=80=20=EC=84=A4=EC=A0=95=20=EB=88=84=EB=9D=BD=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=EB=AC=B8=EC=84=9C=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - init: true 옵션 미적용 서비스 현황 점검 - 250904 skill-news 사례 참조하여 예방 필요성 강조 --- ..._admin_docker_zombie_process_prevention.md | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 troubleshooting/250919_admin_docker_zombie_process_prevention.md diff --git a/troubleshooting/250919_admin_docker_zombie_process_prevention.md b/troubleshooting/250919_admin_docker_zombie_process_prevention.md new file mode 100644 index 0000000..b7b1360 --- /dev/null +++ b/troubleshooting/250919_admin_docker_zombie_process_prevention.md @@ -0,0 +1,35 @@ +# Docker 서비스 좀비 프로세스 방지 설정 누락 + +**날짜**: 2025-09-19 +**작성자**: admin +**관련 서비스**: 전체 Docker 서비스 +**서버**: 51124 (192.168.219.52) + +## 문제: init: true 옵션 미적용 (좀비 프로세스 위험) + +### 점검 결과 +```bash +# init: true 적용 현황 +robeing-skill-news: true # ✅ 적용됨 +skill-email: # ❌ 미적용 +rb8001: # ❌ 미적용 +skill-rag-file: # ❌ 미적용 +skill-embedding: # ❌ 미적용 +skill-slack: # ❌ 미적용 +``` + +### 필요 조치 +각 서비스의 docker-compose.yml에 추가: +```yaml +services: + 서비스명: + init: true # 좀비 프로세스 자동 정리 +``` + +## 배경 +- 250904 문서에서 skill-news 좀비 프로세스 67개 발생 +- init: true 추가로 해결됨 +- 다른 서비스들은 여전히 미적용 상태 + +## 권장 해결 방안 +**모든 서비스 docker-compose.yml에 init: true 추가**로 좀비 프로세스 사전 방지 \ No newline at end of file