웹서버 apache를 운용하는데 error 로그에 지속적으로 에러가 발생된다
AH00082: an unknown filter was not added: DEFLATE 해당 메세지가 발생된다
해결 방법 간단하게 httpd.conf 에서 #LoadModule deflate_module modules/mod_deflate.so 해당 부분을 주석처리 후 웹서버를 재시작 하면 된다
에러로그
1 2 3 4 5 |
[Fri Aug 09 17:20:19.228105 2019] [core:error] [pid 14999:tid 140575869970176] [client 192.168.10.1:59375] AH00082: an unknown filter was not added: DEFLATE [Fri Aug 09 17:20:19.759916 2019] [core:error] [pid 14999:tid 140575903540992] [client 192.168.10.1:59375] AH00082: an unknown filter was not added: DEFLATE [Fri Aug 09 17:20:20.706791 2019] [core:error] [pid 14999:tid 140575903540992] [client 192.168.10.1:59375] AH00082: an unknown filter was not added: DEFLATE [Fri Aug 09 17:20:41.424732 2019] [core:error] [pid 14999:tid 140575903540992] [client 192.168.10.1:59403] AH00082: an unknown filter was not added: DEFLATE [Fri Aug 09 17:22:41.426967 2019] [core:error] [pid 14805:tid 140575878362880] [client 192.168.10.1:59521] AH00082: an unknown filter was not added: DEFLATE |
해결방법
1 2 3 4 |
[root@localhost ~]# vi /usr/local/apache/conf/httpd.conf 주석해제 LoadModule deflate_module modules/mod_deflate.so |
웹서버 재시작
1 2 3 |
/usr/local/apache/bin/apachectl stop /usr/local/apache/bin/apachectl start |
더이상 해당 로그는 발생되지 않는다.