Windows 2003에서 아파치(Apache2.2)와 톰캣을 연동하여 웹서버를 구축하였다.
그리고 특별한 문제 없이 웹 사이트가 잘 운영되고 있었다. 
어느날 우연히 시스템 관리자가 웹서버를 하루에 한번 이상씩 재부팅을 해주고 있음을 알게 되었다.
httpd.exe 프로세스가 메모리가 줄지 않고 계속 증가하여 결국 서버다운이 되어
사전에 방지하기 위해 서버를 주기적으로 재부팅한다는 사실 -_-;;
여러 루트를 통해 정보를 수집한 결과
가장 많은 답변이 ...
"왜 Windows에서 아파치 톰캣을 돌리냐 리눅스로 바꾸세요" 였다 
맞는 말이지만... 개발 환경이 항상 원하는대로 되나 -_-;;
결론
OS문제를 떠나 메모리 누수가 발생하여 계속 증가하는 것으로 판단.
프로그램 소스에 문제가 없다는 가정하에 ... 아파치 환경파일 수정
httpd.conf 에서   주석(#) 제거
...
# Server-pool management (MPM specific)
Include conf/extra/httpd-mpm.conf
...
extra/httpd-mpm.conf 에서 MaxRequestsPerChild    해당 부분 수치 조정
# WinNT MPM
# ThreadsPerChild: constant number of worker threads in the server process
# MaxRequestsPerChild: maximum  number of requests a server process serves
<IfModule mpm_winnt_module>
    ThreadsPerChild      150
    MaxRequestsPerChild    1000
</IfModule>
MaxRequestsPerChild  숫자
자식 프로세스가 숫자 만큼 요청을 처리후 종료된다는 의미 (0은 종료없이 계속 실행)
Description: 
Limit on the number of requests that an individual child server will handle during its life 
Syntax: MaxRequestsPerChild number 
	웹 프로그래밍				
			
		2012.09.09 08:35				
				Window에서 아파치+톰캣 연동시 httpd.exe 메모리 누수 관련
							조회 수 3969	추천 수 0	댓글 0					
				
				공부 게시판
공부에 도움되는 글을 올려주세요.
- 
		
			
		read more
[공지] 공부 게시판 입니다.
 - 
		
			
		Read More
홍콩 보내주다를 뜻하는 영어 표현 한가지를 노래를 통해 배워보자
 - 
		
			
		Read More
향수 잔향 기간별 구분
 - 
		
			
		Read More
Question about Korean - What does 홍콩을 보내다 mean?
 - 
		
			
		Read More
리눅스 서버 설치 중 에러 "Failed to find a suitable stage1 device"
 - 
		
			
		Read More
Linux 11 . Linux 설치 시 lvm 수동설정
 - 
		
			
		Read More
[Rocky Linux] 누구나 쉽게 따라하는 Rocky Linux 9.0 OS 다운로드 및 설치 방법~!!
 - 
		
			
		Read More
Linux/Rocky Linux Rocky Linux : Composer 설치
 - 
		
			
		Read More
[Rocky Linux] 록키 리눅스 최신 업데이트 적용 방법
 - 
		
			
		Read More
rocky linux 커널 업데이트
 - 
		
			
		Read More
[Windows] OWASP ZAP 사용법
 - 
		
			
		Read More
[웹 취약점] 웹서버 디렉토리 리스팅 방지
 - 
		
			
		Read More
Clonezilla(클론질라) 백업파일 하드디스크로 복구 방법
 - 
		
			
		Read More
클론질라 사용 방법 - OS 이미지 백업 CloneZilla
 - 
		
			
		Read More
[Linux / Rocky] FTP 접속 관련 설정 실습 예제
 - 
		
			
		Read More
Could not reliably determine the server's fully qualified domain name
 - 
		
			
		Read More
[아파치] 아파치 웹서버에 .htaccess 파일 설정하는 방법
 - 
		
			
		Read More
[Linux] Apache web server의 rewrite module 사용하기 [출처] [Linux] Apache web server의 rewrite module 사용하기|작성자 g00dmoney
 - 
		
			
		Read More
록키 리눅스 9.1에서 apache, mysql, PHP 설치
 - 
		
			
		Read More
[권한문제] 라이믹스 Fatal error: Uncaught Rhymix\Framework\Exception: Cannot write template cache file
 - 
		
			
		Read More
라이믹스 php 에러 표시
 
		
	

















