WAS 엔지니어
[weblogic12c] 엔진 설치 / 도메인 추가 본문
1. 설치
oraInst.loc
inventory_loc=[oraInventory 절대경로]
inst_group=[웹로직 설치할 그룹명]
weblogic.rsp
[ENGINE]
#DO NOT CHANGE THIS.
Response File Version=1.0.0.0.0
[GENERIC]
#Set this to true if you wish to skip software updates
DECLINE_AUTO_UPDATES=true
#My Oracle Support User Name
MOS_USERNAME=
#My Oracle Support Password
MOS_PASSWORD=<SECURE VALUE>
#If the Software updates are already downloaded and available on your local
system, then specify the path to the directory where these patches are
available and set SPECIFY_DOWNLOAD_LOCATION to true
AUTO_UPDATES_LOCATION=
#Proxy Server Name to connect to My Oracle Support
SOFTWARE_UPDATES_PROXY_SERVER=
#Proxy Server Port
SOFTWARE_UPDATES_PROXY_PORT=
#Proxy Server Username
SOFTWARE_UPDATES_PROXY_USER=
#Proxy Server Password
SOFTWARE_UPDATES_PROXY_PASSWORD=<SECURE VALUE>
#The oracle home location. This can be an existing Oracle Home or a new Oracle Home
ORACLE_HOME=/sw/was/weblogic/12.2.1.4
#The federated oracle home locations. This should be an existing Oracle
Home. Multiple values can be provided as comma seperated values
FEDERATED_ORACLE_HOMES=
#Set this variable value to the Installation Type selected. e.g. WebLogic
Server, Coherence, Complete with Examples.
INSTALL_TYPE=WebLogic Server
설치 명령어
$ [java 디렉토리/bin/java] / fmw-[버전명].jar -silent -responseFile [경로]/weblogic.rsp -invPtrLoc [경로]/oraInst.loc
2. Domain 추가
$ ${ORACLE_HOME}/oracle_common/common/bin/wlst.sh domain.py
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', '')
set('ListenPort', 7001)
setOption('OverwriteDomain', 'true')
setOption('ServerStartMode' ,'prod')
writeDomain('/sw/was/weblogic/12.2.1.4/domains/base_domain')
closeTemplate()
exit()
'WAS > WebLogic' 카테고리의 다른 글
[Weblogic] 웹로직 점검 방법 (0) | 2022.09.15 |
---|---|
[weblogic14c] 정리 (0) | 2022.09.06 |
[Weblogic12c] Derby 프로세스 기동하지 않기 (0) | 2022.08.18 |
[wls12c] OPatch, PSU (0) | 2022.08.18 |
[WLS12c] Log Rotation (콘솔 활용편) (0) | 2022.08.16 |