'2016/05'에 해당되는 글 2건

  1. 2016.05.19 윈도우 부팅 및 종료시간 줄이기
  2. 2016.05.17 mod_define
posted by 은이종 2016. 5. 19. 14:18


1. 서비스 항목 강제종료 타임아웃 시간 줄여주기


실행 - regeidt


[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control]
"WaitToKillServiceTimeout"="100"



2. 성능진단 변경


실행 - gpedit.msc


로컬컴퓨터정책 - 컴퓨터 구성 - 관리 템플릿 - 시스템 - 문제 해결 및 진단




2가지 부분을 아래와 같이 수정하면 된다


구성되지 않음 -> 사용


으로 변경하고


밑의 시나리오 실행 수준을


검색 및 문제 해결만





3. 시스템 종료시, "가상 메모리 페이지 파일 지움" 설정 "사용안함 "




posted by 은이종 2016. 5. 17. 11:54

 

This module is contained in the mod_define.c file. It provides the definition variables for arbitrary directives, i.e. variables which can be expanded on any(!) directive line. It is compatible with Apache httpd 2.0 and 2.2. It is not compiled into the server by default. To use mod_define you have to enable the following line in the server build Configuration file:

    AddModule  modules/extra/mod_define.o

 

 

http://people.apache.org/~rjung/mod_define/

 

mod_define.c

 


첨부한 파일을 옮긴 후,

 

apxs –i – a –c mod_define.c

으로 설치

 

httpd.conf에

----------------------------------------------------

LoadModule define_module    modules/mod_define.so

--------------------------------------------------

자동으로 기입된다.

 

해당 소켓파일은 /apache/module에 위치하니 확인

'Web/WAS > Apache' 카테고리의 다른 글

Apache Log 2개로 분리하기  (0) 2017.08.11
Apache conf 표준설정  (0) 2016.04.21
Apache socket_timeout , reply_timeout 설정  (0) 2015.12.30
Apache pagespeed 설치  (0) 2015.03.18
Apache method 설정  (0) 2014.11.25