반응형
JBoss EAP의 AJP thread pool 갯수를 변경하려면 어떻게 해야 할까요?
/JBOSS/domains/node10/configuration/standalone.xml 또는 standalone-ha.xml 파일에 다음과 같은 형식으로 추가합니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<subsystem xmlns="urn:jboss:domain:threads:1.1">
<thread-factory name="http-connector-factory-a" group-name="http-a" thread-name-pattern="HTTP-%t" />
<bounded-queue-thread-pool name="ajp-executor">
<core-threads count="4096" />
<queue-length count="2000" />
<max-threads count="4096" />
<thread-factory name="http-connector-factory-a" />
</bounded-queue-thread-pool>
</subsystem>
..........
<subsystem xmlns="urn:jboss:domain:web:1.5" default-virtual-server="default-host" native="false">
<configuration>
<jsp-configuration development="true" check-interval="1" modification-test-interval="1" recompile-on-fail="true" x-powered-by="false"/>
</configuration>
<connector name="http" protocol="HTTP/1.1" scheme="http" socket-binding="http" />
<connector name="ajp" protocol="AJP/1.3" scheme="http" socket-binding="ajp" executor="ajp-executor" />
<virtual-server name="default-host" enable-welcome-root="false">
<alias name="localhost"/>
</virtual-server>
</subsystem>
|
cs |
반응형
'IT 이야기 > JBoss EAP' 카테고리의 다른 글
[JBoss EAP] AP보안 점검에서 TRACE, DELETE 등의 보안 취약점 해결 방안 (0) | 2019.11.19 |
---|---|
[JBoss EAP] war 파일을 풀어서 서비스 하기 (0) | 2019.11.19 |
[JBoss EAP] mod_jk 설정에서 connection timeout을 늘린 이후 로그에서 에러 발생 (0) | 2019.11.19 |
[JBoss EAP] JBoss EAP 설정에서 언어 값을 UTF-8에서 EUC-KR로 변경 (0) | 2019.11.19 |
[JBoss EAP] worker.wlb.method=Session으로 설정해놓았으나 JBoss EAP에서 Session이 유지되지 않을때 (0) | 2019.11.19 |
댓글