본문 바로가기
Java/tomcat

weblogic 12c 실행

by java개발자 2017. 9. 12.

1. AdminServer 실행

nohup ./startWebLogic.sh &


2. ManagedServer START/STOP(bin폴더에서)

nohup ./startManagedWebLogic.sh Server-0-AAAAAA t3://localhost:7001 &

./stopManagedWebLogic.sh Server-0-AAAAAA t3://localhost:7001 ID PW


3. ManagedServer START할때, id, pw를 typing해야 하는데, nohup으로 하게 되면 typing할 타이밍을 놓쳐서 START자체가 안된다.

id/pw를 따로 관리하자.

OOOOOO/user_projects/domains/base_domain/servers/Server-0-AAAAAA/security/boot.properties 에 파일 생성

파일내용

username=ID

password=PW


참고

weblogic start 시간이 너무 오래걸리는 경우. (10분 이상.)

bin/startWebLogic.sh 의 JAVA_OPTIONS에 다음 추가

-Djava.security.egd=file:/dev/./urandom

'Java > tomcat' 카테고리의 다른 글

weblogic 12c with logback  (0) 2017.09.12