nugawiki

./categories/server

Apache 로그 일별 로테이션 rotatelogs

업데이트 2026-07-21 조회수

rotatelogs로 일별 access 로그

# 변경 전
CustomLog "${APACHE_LOG_DIR}/access.log" combined

# 변경 후 (86400= 1)
CustomLog "|$(which rotatelogs) ${APACHE_LOG_DIR}/access.log.%Y_%m_%d 86400" combined
  • rotatelogs 경로: which rotatelogs
  • combined: httpd.conf의 LogFormat 이름
  • VirtualHost별 CustomLog에도 동일 적용 가능

./comments