NT랑 UNIX랑 다른건지 어떤건지 자세히는 모르겠지만
이 방법으로 해결을 했다.
1. Apache 설치는 기본 경로로 설치하면 아래 경로에 httpd.conf 파일이 있을것이다. 이 파일을 Open 한다.
2. 파일 내에서 CustomLog 를 찾아서 아래와 같이 수정한다.
3. Apache 를 리스타트 해보고 아래 경로에 로그파일이 생성 되었는지 확인해본다.
4. 참고 문헌
끝
이 방법으로 해결을 했다.
1. Apache 설치는 기본 경로로 설치하면 아래 경로에 httpd.conf 파일이 있을것이다. 이 파일을 Open 한다.
C:\Apache\Apache2\conf\
2. 파일 내에서 CustomLog 를 찾아서 아래와 같이 수정한다.
#
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
#CustomLog logs/access.log common
CustomLog "|bin/rotatelogs.exe logs/access.log.%Y%m%d 86400" combined
# The location and format of the access logfile (Common Logfile Format).
# If you do not define any access logfiles within a <VirtualHost>
# container, they will be logged here. Contrariwise, if you *do*
# define per-<VirtualHost> access logfiles, transactions will be
# logged therein and *not* in this file.
#
#CustomLog logs/access.log common
CustomLog "|bin/rotatelogs.exe logs/access.log.%Y%m%d 86400" combined
3. Apache 를 리스타트 해보고 아래 경로에 로그파일이 생성 되었는지 확인해본다.
C:\Apache\Apache2\logs\
4. 참고 문헌
http://blog.empas.com/ivory0127/read.html?a=9170468
http://k.daum.net/qna/view.html?qid=3rVcB
http://httpd.apache.org/docs/2.0/programs/rotatelogs.html
http://k.daum.net/qna/view.html?qid=3rVcB
http://httpd.apache.org/docs/2.0/programs/rotatelogs.html
끝
'Programming' 카테고리의 다른 글
[펌] Tomcat 6.0 Context 설정 방법 (0) | 2010.01.27 |
---|---|
Eclipse 3.2 에서 꺼도 되는 옵션 정리 (0) | 2009.12.01 |
[ASP] 정규식을 이용한 태그 제거 함수 (0) | 2009.07.02 |
[ASP] 소수점 이하 2자리수까지만 표시하는 함수 (0) | 2009.07.01 |
[JAVA/MS-SQL] JAVA에서 MS-SQL 스토어드 프로시저 사용하기 (0) | 2009.06.02 |