본문 바로가기
WAS/WEBLOGIC

1. 12c 설치(silent)

by coldplayer83 2023. 6. 27.
728x90

1. oraInst.loc

inventory_loc=/home/app/oraInventory
inst_group=app

inventory_loc 경로는 ORACLE_HOME 내부에 있을 수 없음 (내부로 설정시 에러 발생)

보통 ORACLE_HOME 디렉토리가 위치한 곳과 동일 경로상에 위치하도록 설정

 

inst_group : weblogic 설치 계정

 

ex)

ORACLE_HOME= /sw/was/weblogic/weblogic_12cr2

inventory_loc=/sw/was/weblogic/inventory_12cr2

 


설치시 force 옵션을 주면 ORACLE_HOME 내부에 설정 가능

$JAVA_HOME/bin/java -jar -d64 fmw_12.2.1.4.0_wls.jar -silent -force -responseFile /파일경로/weblogic.rsp -invPtrLoc /파일경로/oraInst.loc
 
ex)
ORACLE_HOME=/home/weblogic/wls/wls12214
inventory_loc=/home/weblogic/wls/wls12214/oraInventory

2. 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

 

ORACLE_HOME : weblogic 엔진을 설치할 경로

 

3. 설치

 

설치시 웹로직 설치 계정 확인

bash_profile에서 JAVA_HOME 수정시 고객사에서 사용하고 있는 다른 프로그램에도 영향을 미칠 수 있으므로 다음과 같이 자바 경로를 명시하여 설치할 것
=> ${JAVA 경로}/java -jar 웹로직 설치파일.jar

$JAVA_HOME/bin/java -jar -d64 fmw_12.2.1.4.0_wls.jar -silent \
 -responseFile /파일경로/weblogic.rsp -invPtrLoc /파일경로/oraInst.loc

 


※ 설치시 로그 생성하는 방법

12.1.2는 설치 시 로그를 Inventory_loc로 설정한 위치에 남기지만 해당 버전을 제외한 다른 버전은 별도의 로그 옵션을 추가해야 설치 로그를 기록할 수 있다.
java -jar ./wls1211_generic.jar -mode=console -log=/tmp/install.log

 


※ weblogic.jar 파일을 설치하면 압축이 기본적으로 /tmp 경로에 풀리게 되는데 /tmp 공간이부족할 경우 다른 경로로 변경할 수 있다.

/usr/jdk/jdk1.7/jdk1.7.0_80/bin/java -Djava.io.tmpdir=/weblogic/weblogic10/tmp -jar \
wls1036_generic.jar -mode=console

자바 옵션은 -jar 앞에 선언해야 함


웹로직 디렉토리 구조

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

6. boot.properties  (0) 2023.07.04
5. Managed Server 구성  (0) 2023.07.03
4. 서버 환경 설정  (0) 2023.06.28
3. 도메인 생성  (0) 2023.06.28
2. 패치  (0) 2023.06.27