일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- miplatform
- MIP
- 톰캣
- 오류
- oracle
- 오라클
- 이클립스
- java
- 튜닝
- 도서
- JEUS
- 마이플랫폼
- Eclipse
- 기타소득
- Tomcat
- 에러
- Excel
- JavaScript
- 데이터베이스
- error
- 태그를 입력해 주세요.
- DB
- 엑셀
- Book
- 한글
- 함수
- 성능
- Report Designer
- 자바
- 회계
Archives
- Today
- Total
어느 가을날의 전환점
TOMCAT|경고: More than the maximum number of request parameters... 본문
Development
TOMCAT|경고: More than the maximum number of request parameters...
어느가을빛 2012. 11. 29. 17:50[오류 메시지]
11월 29, 2012 5:24:35 오후 org.apache.tomcat.util.http.Parameters processParameters
경고: More than the maximum number of request parameters (GET plus POST) for a single request ([10,000]) were detected. Any parameters beyond this limit have been ignored.
[해결 방안]
../Tomcat/conf/server.xml
<Connector port="8090" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" maxParameterCount="10000"/>
HashDos 공격의 막기 위한 톰캣의 제한에 따른 경고 메시지 임.
HashDos 공격은 많은 HTTP Request Parameter (String 형태)를 만들어, hash contension이 나도록 하여 CPU 부하를 주도록 하는 것으로, Web Server에서는 HTTP Request를 HashMap으로 만들어 관리 함.
0 또는 -1로 설정 시 무제한으로 설정 됨(Default는 10,000)
# 참고 자료
1) HashDos 공격 대비하기
'Development' 카테고리의 다른 글
CLIPPING|웹 클리핑(크롤러: Crawler) (0) | 2013.01.25 |
---|---|
TOMCAT|톰켓 오류 - java.security.AccessControlException: access denied (java.io.FilePermission c:\...\ write) (1) | 2012.12.05 |
DOS|텍스트(text, .txt) 파일 병합 방법 (0) | 2012.05.24 |
TOMCAT|톰켓 web.xml의 Servlet 로드 옵션 <load-on-startup> (0) | 2012.03.28 |
JAVA|자바로 메일 보내기(Apache Commons Email) (0) | 2012.03.20 |
Comments