Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ipad
- 티스토리 초대장
- Eclipse
- 메모리
- Database
- 톰켓
- udp
- 이클립스
- 한글
- spring
- ios
- MySQL
- JavaScript
- Android
- java
- 티스토리 초대
- iphone
- jsp
- XML
- permgen space
- HTML
- Tomcat
- WebView
- 인코딩
- Memory
- UIWebView
- encoding
- Objective C
- jQuery
- C#
Archives
- Today
- Total
suroMind
[Server]Tomcat max thread 변경 본문
톰켓이 스레드가 부족할 경우 아래와 같은 메세지를 출력하고 다운될 때가 있다.
심각: All threads (200) are currently busy, waiting. Increase maxThreads (200) or check the servlet status
기본적인 maxThreads가 200이므로 늘려주면된다.
Tomcat폴더/conf/server.xml 파일에서 Connector 엘리먼트에서 변경 혹은 추가한다.
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
maxThreads="400"
redirectPort="8443" />
참고 : http://blog.naver.com/PostView.nhn?blogId=junix&logNo=80125225673
'IT분야 > Server' 카테고리의 다른 글
[Server]Tomcat 메모리 변경 (0) | 2013.12.13 |
---|---|
[Tomcat]tomcat get 한글 깨짐 (0) | 2013.12.10 |
[Tomcat]PermGen space (0) | 2012.11.04 |
Weblogic 메모리 PermGen space 에러. (0) | 2012.11.04 |
[Apache+PHP+MySQL] Windows 2003 Server APM 셋팅 (0) | 2010.12.20 |
Comments