[WebLogic] 웹로직 12c Derby DB 비활성화
Derby DB 사용 제한
WebLogic 10.3.4 이상부터 Apache의 Derby DataBase가 설치에 포함된다.
이 때 WebLogic 12.1.2
부터는 웹로직 프로세스를 띄우면 Derby DB가 자동으로 시작된다.
자원이 사용되므로 기능을 쓰지 않을거면 이를 비활성화 할 필요가 있다.
setDomainEnv.sh 파일 수정
1
vi ${DOMAIN_HOME}/bin/setDomainEnv.sh
DERBY_FLAG 설정을 false
로 변경
1
2
3
4
5
6
# Set DERBY_FLAG, if derby is available.
if [ -f ${WL_HOME}/common/derby/lib/derby.jar ] ; then
DERBY_FLAG="false"
export DERBY_FLAG
fi
References
This post is licensed under CC BY 4.0 by the author.
Comments powered by Disqus.