구버전(ALUI)에서 database connection pool 설정 방법
Products/WebCenter Interaction View Comments
현재 WCI는 Configuration Manager가 있어서 수려한(?) UI에서 설정이 가능하지만, 구 버전(ALUI)에서는 xml 파일에 직접 세팅해줘야 한다.
방법은
ALUI설치 디렉토리/settings/common/serverconfig.xml 파일의
1.
<!-- Database settings supporting all three database types -->
2.
<
component
name
=
"opendb:DBConnection/oracle"
type
=
"http://www.plumtree.com/config/component/types/opendb"
>
3.
4.
...
5.
6.
</
component
>
윗 component name="opendb:DBConnection" 사이에 다음을 추가하면 된다.
01.
<
setting
name
=
"database-connection:min-pooled-connections"
>
02.
<
value
xsi:type
=
"xsd:integer"
>10</
value
>
03.
</
setting
>
04.
<
setting
name
=
"database-connection:max-pooled-connections"
>
05.
<
value
xsi:type
=
"xsd:integer"
>50</
value
>
06.
</
setting
>
07.
<
setting
name
=
"database-connection:login-timeout"
>
08.
<
value
xsi:type
=
"xsd:integer"
>10</
value
>
09.
</
setting
>
'Products > WebCenter Interaction' 카테고리의 다른 글
CustomSSO개발시 session 개체 사용법 (0) | 2012.09.27 |
---|---|
Webcenter Interaction 설치 중 arg list too long 오류시 해결 방법 (0) | 2012.07.13 |
WCI 설치 시 Oracle RAC를 사용할 때 Configuration 방법 (0) | 2012.05.03 |
Search Server의 로그 삭제 (cadmin) (0) | 2012.03.28 |
WCI - PTJOBLOGS (2) | 2012.03.21 |
Recent Comments