728x90
https://blueyikim.tistory.com/787
!! 필수 패키지 설치 우선 수행
1. 설치 파일 압축 해제
unzip ofm_webtier_linux_11.1.1.9.0_64_disk1_1of1.zip
2. 설치
ohs.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
DECLINE_SECURITY_UPDATES=true
SECURITY_UPDATES_VIA_MYORACLESUPPORT=false
MIDDLEWARE_HOME=/sw/web
INSTALL AND CONFIGURE LATER TYPE=true
SKIP_SOFTWARE_UPDATES=true
#The oracle home location. This can be an existing Oracle Home or a new Oracle Home
ORACLE_HOME=/sw/web/ohs
#Set this variable value to the Installation Type selected. e.g. WebLogic Server, Coherence, Complete with Examples.
INSTALL_TYPE=Standalone HTTP Server (Managed independently of WebLogic server)
oraInst.loc
inventory_loc=/home/app/install
inst_group=app
cd Disk1
./runInstaller -silent -responseFile /home/app/install/ohs.rsp -invPtrLoc /home/app/install/oraInst.loc
3. instance(도메인) 생성
cd ${OHS_HOME}/opmn/bin
./opmnctl createinstance -oracleInstance /sw/web/ohs/instances/${instance_name} -instanceName ${instance_name} -adminRegistration OFF
4. component 생성
cd /sw/web/ohs/instances/${instance_name}/bin
./opmnctl createcomponent -componentname ${component_name} -componentType OHS
5. ohs 기동/중지 및 상태 확인
cd /sw/web/ohs/instances/${instance_name}/bin
./opmnctl startall : opmn 프로세스와 다른 관리 프로세스들 모두 기동
./opmnctl stopall : opmn 프로세스와 다른 관리 프로세스들 모두 종료(정상 종료)
./opmnctl start : opmn 프로세스 기동
./opmnctl shutdown : opmn 프로세스와 다른 관리 프로세스들 모두 강제 종료
./opmnctl status
./opmnctl status -l
특정 component만 기동/중지
cd /sw/web/ohs/instances/test_inst/bin
./opmnctl start
./opmnctl startproc ias-component=COMP1
./opmnctl stopproc ias-component=COMP1
./opmnctl reload : opmn.xml 리로드. 다른 서브 시스템 프로세스 재기동 없이 opmn 프로세스만 재기동
ip:7777로 웹 기본 서비스 페이지 동작 확인
instance 삭제
./opmnctl -deleteinstance -oracleInstance /sw/web/ohs/instances/${instance_name}
component 삭제
${instance_home}/bin/opmnctl deletecomponent -componentname ${component_name}
'WEB > OHS' 카테고리의 다른 글
6. OHS 12c 설치 (0) | 2024.08.05 |
---|---|
5. OHS 11g + weblogic 11g 연동 (0) | 2024.08.05 |
4. OHS 11g 환경 설정 (0) | 2024.08.01 |
2. OS 필수 패키지 리스트 (0) | 2024.08.01 |
1. OHS(Oracle HTTP Server) (0) | 2024.08.01 |