-httpd.conf 설정 파일에서 수정

 

1. KeepAlive 정의

 

   -특정 한 프로세스가 특정 사용자의 지속적인 요청 작업들을 계속해서 처리하도록 함.
   -즉, 첫 요청 시에 열어 놓은 Port를 끊지 않고, 지정된 KeepAliveTimeout동안 idle하면 끊는다. 
   -KeepAliveTimeout값이 채워지기 전에 다시 요청이 온다면 다시 KeepAliveTimeout은 다시 0부터 Count를 수행한다.
   -최종적으로, KeepAliveTimeout 지정한 시간만큼 idle하면 그때, 해당 Port연결을 끊는다.

 

2. 설정 방법

 

KeepAlive [On/Off]
MaxKeepAliveRequest [횟수]
KeepAliveTimeout [초]

사용 예
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 60

 

3. 출처: http://mcpaint.tistory.com/141

+ Recent posts