[문제 상황]

Apache에 Modsecurity 모듈을 설치했더니 access log가 수집되지 않는 문제 발생

 

[문제 해결]

- Apache 설정 파일 수정

* /etc/apache2/apache2.conf 또는 /etc/conf/httpd/httpd.conf 수정

vim /etc/apache2/apache2.conf

 

- CustomLog 수집 경로 설정

* 아래 LogFormat을 수정하여 access.log에 수집되는 필드를 변경 가능

 

- Apache 재시작

systemctl restart apache2

 

- 설정된 Format에 맞게 Access log 수집 확인

 


 

[기타]

- access.log와 함께 other_vhosts_access.log에서 로그를 수집하고 있을 수 있음

* other_vhosts_access.log는 여러 가상 호스트(virtual host)를 사용하는 경우에 사용됨

- 불필요한 경우라면 '/etc/apache2/conf-enabled/other-vhosts-access-log.conf' 에서 비활성화 가능

* 해당 구문 #을 통해 주석 처리

+ Recent posts