본문 바로가기
WAS/WEBLOGIC

3. 도메인 생성

by coldplayer83 2023. 6. 28.
728x90

!! 도메인 생성 전 웹로직 패치를 먼저 수행하는 것이 좋음

 

domain.py

selectTemplate('Basic WebLogic Server Domain', '12.2.1.3.0')
loadTemplates()
cd('/Security/base_domain/User/weblogic')
set('Name', 'weblogic')
cmo.setPassword('weblogic1')
cd('/Servers/AdminServer')
set('Name', 'AdminServer')
set('ListenAddress', '사용ip로 지정')
set('ListenPort', 7001)
setOption('OverwriteDomain', 'true')
setOption('ServerStartMode' ,'prod')
writeDomain('/sw/was/weblogic/12.2.1.4/domains/base_domain')
closeTemplate()
exit()

selectTemplate의 경우 12.2.1.4 버전인 경우에도 12.2.1.3 버전 사용으로 작성하여 사용(버그있음)

set 부분을 사용 환경에 맞게 입력

set('Name', 'weblogic') : 콘솔 계정명

cmo.setPassword('weblogic1') : 콘솔 계정 비밀번호

set('Name', 'AdminServer') : 어드민 서버 이름

set('ListenAddress', '사용ip로 지정') : 어드민 서버 ip

set('ListenPort', 7001) : 어드민 서버 port

writeDomain('/sw/was/weblogic/12.2.1.4/domains/base_domain') : 도메인 경로

 

도메인 생성

${weblogic_엔진 경로}/oracle_common/common/bin/wlst.sh ./domain.py

 

 

 

 

 

'WAS > WEBLOGIC' 카테고리의 다른 글

6. boot.properties  (0) 2023.07.04
5. Managed Server 구성  (0) 2023.07.03
4. 서버 환경 설정  (0) 2023.06.28
2. 패치  (0) 2023.06.27
1. 12c 설치(silent)  (0) 2023.06.27