반응형

쓰레드 갯수 모니터링하는 방법입니다.

 

] cd /ces/jboss/server/[standalone1/standalone2]

 

] ./jboss-cli

 

] /core-service=platform-mbean/type=threading:read-attribute(name=thread-count) - 현재 사용중인 스레드 개수

 

] /core-service=platform-mbean/type=threading:read-attribute(name=peak-thread-count) - 쓰레드 개수의 피크시 값

 

시스템 프로퍼티스에  AJP 커넥션 타임아웃을 추가로 설정해주시기 바랍니다.

 

value의 단위는 밀리세컨드입니다.

 

<system-properties>

 

<property name="org.apache.coyote.ajp.DEFAULT_KEEP_ALIVE_TIMEOUT" value="600000"/>

 

</system-properties

 

JBoss에서 서비스하고 있는 어플리케이션내에서 GET/POST Parameter가

기본 설정값(512)보다 많을 경우 발생합니다.

 

 

 

standalone-ha.xml에 아래의 설정을 넣어주시면 됩니다.

 

/ces/jboss/server/standalone1/configuration/standalone-ha.xml

 

 

 

standalone-ha.xml 파일 맨 위에 보시면 extensions 엘리먼트와 management 엘리먼트 사이에

 

굵게 표시된 설정값을 넣어주시면 됩니다.

 

 

 

</extensions>

 

<system-properties>

    <property name="org.apache.tomcat.util.http.Parameters.MAX_COUNT" value="1024" />

</system-properties>

 

<management>

 

반응형

+ Recent posts