I. 리눅스 설치
1. Oracle Enterprise Linux 5 설치
II. 사전 준비
1. VirtualBox Guest Addition 설치
실습을 위해 VirtualBox에서 구축된 환경에서는 편의를 위해 VBOXADDITIONS (이하 Guest Addition)를 설치해야 합니다.
사용자 이름에 "root"를 입력하고 "엔터"을 입력합니다.
암호에 root 사용자의 암호를 입력하고 "엔터"를 입력합니다.
호스트 머신의 VirtualBox 메뉴에서 '장치' > '게스트 확장 CD 이미지 삽입'을 클릭하여, Guest Addition CD를 mount 시켜줍니다.
Guest Addition 이미지를 mount하면 자동으로 폴더가 열립니다.
VBoxLinuxAdditions.run을 더블 클릭합니다.
실행 여부를 뭍는 창이 나오면 <터미널에서 실행>을 클릭합니다.
자동으로 설치가 진행되며, 설치가 완료되면 자동으로 터미널 창이 닫힙니다.
2. 설치 내역 확인
cat /etc/oracle-release cat /etc/redhat-release lsb_release -id uname -r
[root@oel5 ~]# cat /etc/oracle-release Oracle Linux Server release 5.11 [root@oel5 ~]# cat /etc/redhat-release Red Hat Enterprise Linux Server release 5.11 (Tikanga) [root@oel5 ~]# lsb_release -id Distributor ID: EnterpriseEnterpriseServer Description: Enterprise Linux Enterprise Linux Server release 5.11 (Carthage) [root@oel5 ~]# uname -r 2.6.39-400.215.10.el5uek
설치된 리눅스의 버전 정보를 확인합니다.
설치된 버전에 따라 출력되는 메시지는 다를 수 있습니다.
rpm -q binutils-2.* rpm -q compat-libstdc++-33-* rpm -q elfutils-libelf-0.* rpm -q elfutils-libelf-devel-* rpm -q gcc-4.* rpm -q gcc-c++-4.* rpm -q glibc-2.* rpm -q glibc-common-2.* rpm -q glibc-devel-2.* rpm -q glibc-headers-2.* rpm -q ksh-2* rpm -q libaio-0.* rpm -q libaio-devel-0.* rpm -q libgcc-4.* rpm -q libstdc++-4.* rpm -q libstdc++-devel-4.* rpm -q make-3.* rpm -q sysstat-7.* rpm -q unixODBC-2.* rpm -q unixODBC-devel-2.*
[root@oel5 ~]# rpm -q binutils-2.* binutils-2.17.50.0.6-26.el5 [root@oel5 ~]# rpm -q compat-libstdc++-33-* compat-libstdc++-33-3.2.3-61 [root@oel5 ~]# rpm -q elfutils-libelf-0.* elfutils-libelf-0.137-3.el5 [root@oel5 ~]# rpm -q elfutils-libelf-devel-* elfutils-libelf-devel-0.137-3.el5 [root@oel5 ~]# rpm -q gcc-4.* gcc-4.1.2-55.el5 [root@oel5 ~]# rpm -q gcc-c++-4.* gcc-c++-4.1.2-55.el5 [root@oel5 ~]# rpm -q glibc-2.* glibc-2.5-123.0.1 [root@oel5 ~]# rpm -q glibc-common-2.* glibc-common-2.5-123.0.1 [root@oel5 ~]# rpm -q glibc-devel-2.* glibc-devel-2.5-123.0.1 [root@oel5 ~]# rpm -q glibc-headers-2.* glibc-headers-2.5-123.0.1 [root@oel5 ~]# rpm -q ksh-2* ksh-20100621-20.el5 [root@oel5 ~]# rpm -q libaio-0.* libaio-0.3.106-5 [root@oel5 ~]# rpm -q libaio-devel-0.* libaio-devel-0.3.106-5 [root@oel5 ~]# rpm -q libgcc-4.* libgcc-4.1.2-55.el5 [root@oel5 ~]# rpm -q libstdc++-4.* libstdc++-4.1.2-55.el5 [root@oel5 ~]# rpm -q libstdc++-devel-4.* libstdc++-devel-4.1.2-55.el5 [root@oel5 ~]# rpm -q make-3.* make-3.81-3.el5 [root@oel5 ~]# rpm -q sysstat-7.* sysstat-7.0.2-13.0.1.el5 [root@oel5 ~]# rpm -q unixODBC-2.* unixODBC-2.2.11-10.el5 [root@oel5 ~]# rpm -q unixODBC-devel-2.* unixODBC-devel-2.2.11-10.el5
오라클 소프트웨어 설치를 위해 필요한 OS 패키지가 모두 설치되었는지 확인합니다.
3. 리눅스 설정 변경
<IP> <호스트명>
10.0.1.112 oel5
/etc/hosts 파일에 서버 정보를 추가합니다.
오라클 소프트웨어 설치를 정상적으로 진행하기 위해 정확한 정보를 입력해야 합니다.
tmpfs /dev/shm tmpfs size=1500m 0 0
mount -o remount /dev/shm
기존 값을 #로 주석 처리
#tmpfs /dev/shm tmpfs defaults 0 0 tmpfs /dev/shm tmpfs size=1500m 0 0
[root@oel5 ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 46G 2.8G 41G 7% / tmpfs 1011M 0 1011M 0% /dev/shm oracle 233G 84G 150G 36% /media/sf_oracle [root@oel5 ~]# mount -o remount /dev/shm [root@oel5 ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/sda1 46G 2.8G 41G 7% / tmpfs 1.5G 0 1.5G 0% /dev/shm oracle 233G 84G 150G 36% /media/sf_oracle
오라클의 MEMORY_TARGET 파라미터를 사용하기 위해서 tmpfs를 변경해야 합니다.
기존에 설정된 tmpfs 값은 #로 주석 처리하거나 삭제합니다.
remount하여 바로 적용시킵니다.
fs.aio-max-nr = 1048576 fs.file-max = 6815744 kernel.shmmni = 4096 kernel.sem = 250 32000 100 128 net.ipv4.ip_local_port_range = 9000 65500 # 11g R2 기준 # net.ipv4.ip_local_port_range = 1024 65500 # 11g R1 기준 net.core.rmem_default = 262144 # 11g R2 기준 # net.core.rmem_default = 4194304 # 11g R1 기준 net.core.rmem_max = 4194304 net.core.wmem_default = 262144 net.core.wmem_max = 1048586
커널 변수를 추가하는 작업입니다.
chkconfig --level 123456 xinetd off chkconfig --level 123456 sendmail off chkconfig --level 123456 cups off chkconfig --level 123456 cups-config-daemon off chkconfig --level 123456 smartd off chkconfig --level 123456 iptables off chkconfig --level 123456 ip6tables off chkconfig --level 123456 bluetooth off chkconfig --level 123456 yum-updatesd off
[root@oel5 ~]# chkconfig --level 123456 xinetd off [root@oel5 ~]# chkconfig --level 123456 sendmail off [root@oel5 ~]# chkconfig --level 123456 cups off [root@oel5 ~]# chkconfig --level 123456 cups-config-daemon off [root@oel5 ~]# chkconfig --level 123456 smartd off [root@oel5 ~]# chkconfig --level 123456 iptables off [root@oel5 ~]# chkconfig --level 123456 ip6tables off [root@oel5 ~]# chkconfig --level 123456 bluetooth off [root@oel5 ~]# chkconfig --level 123456 yum-updatesd off
추가적인 리소스 확보를 위해 기본적으로 실행중인 불필요한 OS 프로그램을 off 시킵니다.
4. 그룹 및 사용자 설정 변경
# groupadd oinstall # groupadd dba groupadd oper usermod -g oinstall -G dba,oper,vboxsf oracle id oracle passwd oracle
[root@oel5 ~]# groupadd oper [root@oel5 ~]# usermod -g oinstall -G oinstall,dba,oper,vboxsf oracle [root@oel5 ~]# id oracle uid=54321(oracle) gid=54321(oinstall) groups=54321(oinstall),54322(dba),160(vboxsf),54323(oper) [root@oel5 ~]# passwd oracle Changing password for user oracle. New UNIX password: BAD PASSWORD: it is based on a dictionary word Retype new UNIX password: passwd: all authentication tokens updated successfully.
설치를 진행할 사용자 계정과 그룹을 생성 또는 추가합니다.
oracle-validated 패키지가 설치되었다면 oracle 유저와 oinstall, dba 그룹은 이미 생성되어 있습니다.
vboxsf 그룹은 VirtualBox의 Guest Addition을 사용하기 위한 그룹으로, 실제 운영 환경에서 Guest Addition을 사용하지 않는다면 추가하지 않습니다.
passwd 명령어로 계정의 암호를 지정해주면 됩니다.
oracle soft nproc 2047 oracle hard nproc 16384 oracle soft nofile 1024 oracle hard nofile 65536
리소스 제한을 위한 사용자별 설정값을 입력합니다.
오라클을 설치하는 OS 계정에 맞게 oracle의 제한값을 입력합니다.
mkdir -p /u01/app/oracle/product chown -R oracle:oinstall /u01 chmod -R 770 /u01
[root@oel6 ~]# mkdir -p /u01/app/oracle/product [root@oel6 ~]# chown -R oracle:oinstall /u01 [root@oel6 ~]# chmod -R 770 /u01
오라클 소프트웨어 설치를 위한 경로를 생성하고, 해당 경로에 대한 권한과 소유권을 수정합니다.
export TMP=/tmp export TMPDIR=$TMP export EDITOR=vi export ORACLE_BASE=/u01/app/oracle export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1 export ORACLE_SID=orcl export ORACLE_TERM=xterm export BASE_PATH=/usr/sbin:$PATH export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$BASE_PATH export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib export CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib export NLS_LANG=AMERICAN_KOREA.AL32UTF8 export PS1='[\u@$ORACLE_SID \W]$ '
oracle 계정으로 접속하여 .bash_profile을 수정합니다.
oracle 유저로 변경하려면 아래와 같이 su 명령을 입력하면 됩니다
su - oracle
III. DB 소프트웨어 설치
./runInstaller
/tmp/CVU_11.2.0.4.0_oracle/runfixup.sh
[root@oel5 ~]# /tmp/CVU_11.2.0.4.0_oracle/runfixup.sh Response file being used is :/tmp/CVU_11.2.0.4.0_oracle/fixup.response Enable file being used is :/tmp/CVU_11.2.0.4.0_oracle/fixup.enable Log file location: /tmp/CVU_11.2.0.4.0_oracle/orarun.log Setting Kernel Parameters... The value for shmmni in response file is not greater than value of shmmni for current session. Hence not changing it. The value for semmsl in response file is not greater than value of semmsl for current session. Hence not changing it. The value for semmns in response file is not greater than value of semmns for current session. Hence not changing it. The value for semmni in response file is not greater than value of semmni for current session. Hence not changing it. kernel.sem = 250 32000 100 128 fs.file-max = 6815744 net.ipv4.ip_local_port_range = 9000 65500 net.core.rmem_default = 262144 net.core.wmem_default = 262144 net.core.rmem_max = 4194304 net.core.wmem_max = 1048576 fs.aio-max-nr = 1048576 uid=54321(oracle) gid=54321(oinstall) groups=54321(oinstall),54322(dba),54323(oper)
/u01/app/oraInventory/orainstRoot.sh /u01/app/oracle/product/11.2.0/db_1/root.sh
[root@oel5 ~]# /u01/app/oraInventory/orainstRoot.sh 다음 권한 변경 중/u01/app/oraInventory. 그룹에 대한 읽기, 쓰기 권한을 추가하는 중입니다. 월드에 대한 읽기, 쓰기, 실행 권한을 제거하는 중입니다. 그룹 이름 변경 중 /u01/app/oraInventory 대상 oinstall. 스크립트 실행이 완료되었습니다.
[root@oel5 ~]# /u01/app/oracle/product/11.2.0/db_1/root.sh Performing root user operation for Oracle 11g The following environment variables are set as: ORACLE_OWNER= oracle ORACLE_HOME= /u01/app/oracle/product/11.2.0/db_1 Enter the full pathname of the local bin directory: [/usr/local/bin]: Copying dbhome to /usr/local/bin ... Copying oraenv to /usr/local/bin ... Copying coraenv to /usr/local/bin ... Creating /etc/oratab file... Entries will be added to the /etc/oratab file as needed by Database Configuration Assistant when a database is created Finished running generic part of root script. Now product-specific root actions will be performed. Finished product-specific root actions.
IV. 패치
cd $ORACLE_HOME OPatch/opatch version mv OPatch OPatch.old cp -r <압축 해제 경로>/OPatch . OPatch/opatch version
[oracle@orcl ~]$ cd $ORACLE_HOME [oracle@orcl db_1]$ OPatch/opatch version OPatch Version: 11.2.0.3.4 OPatch succeeded. [oracle@orcl db_1]$ mv OPatch OPatch.old [oracle@orcl db_1]$ cp -r /media/oracle/OPatch . [oracle@orcl db_1]$ OPatch/opatch version OPatch Version: 11.2.0.3.16 OPatch succeeded.
export PATH=$PATH:$ORACLE_HOME/bin:/usr/ccs/bin opatch lsinventory
[oracle@orcl ~]$ export PATH=$PATH:$ORACLE_HOME/bin:/usr/ccs/bin [oracle@orcl ~]$ opatch lsinventory Oracle Interim 패치 설치 프로그램 버전 11.2.0.3.16 Copyright (c) 2017, Oracle Corporation. All rights reserved. Oracle Home : /u01/app/oracle/product/11.2.0/db_1 Central Inventory : /u01/app/oraInventory from : /u01/app/oracle/product/11.2.0/db_1/oraInst.loc OPatch version : 11.2.0.3.16 OUI version : 11.2.0.4.0 Log file location : /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/opatch2017-06-17_10-30-54오전_1.log Lsinventory Output file location : /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/lsinv/lsinventory2017-06-17_10-29-54오전.txt -------------------------------------------------------------------------------- Local Machine Information:: Hostname: oel5 ARU platform id: 226 ARU platform description:: Linux x86-64 설치된 최상위 레벨 제품(1): Oracle Database 11g 11.2.0.4.0 이 Oracle 홈에 1개의 제품이 설치되어 있습니다. 이 Oracle 홈에 설치된 Interim 패치가 없습니다. -------------------------------------------------------------------------------- OPatch succeeded.
cd 24732075 opatch prereq CheckConflictAgainstOHWithDetail -ph ./
[oracle@orcl oracle]$ cd 24732075 [oracle@orcl 24732075]$ opatch prereq CheckConflictAgainstOHWithDetail -ph ./ Oracle Interim 패치 설치 프로그램 버전 11.2.0.3.16 Copyright (c) 2017, Oracle Corporation. All rights reserved. PREREQ session Oracle Home : /u01/app/oracle/product/11.2.0/db_1 Central Inventory : /u01/app/oraInventory from : /u01/app/oracle/product/11.2.0/db_1/oraInst.loc OPatch version : 11.2.0.3.16 OUI version : 11.2.0.4.0 Log file location : /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/opatch2017-06-17_10-30-17오전_1.log Invoking prereq "checkconflictagainstohwithdetail" Prereq "checkConflictAgainstOHWithDetail" passed. OPatch succeeded.
cd 24732075 opatch apply
[oracle@orcl oracle]$ cd 24732075 [oracle@orcl 24732075]$ opatch apply Oracle Interim 패치 설치 프로그램 버전 11.2.0.3.16 Copyright (c) 2017, Oracle Corporation. All rights reserved. Oracle Home : /u01/app/oracle/product/11.2.0/db_1 Central Inventory : /u01/app/oraInventory from : /u01/app/oracle/product/11.2.0/db_1/oraInst.loc OPatch version : 11.2.0.3.16 OUI version : 11.2.0.4.0 Log file location : /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/opatch2017-06-17_10-33-30오전_1.log Verifying environment and performing prerequisite checks... OPatch continues with these patches: 17478514 18031668 18522509 19121551 19769489 20299013 20760982 21352635 21948347 22502456 23054359 24006111 24732075 계속하겠습니까? [y|n] y User Responded with: Y All checks passed. 보안 문제에 대한 알림을 받을 전자 메일 주소를 제공하고 Oracle Configuration Manager를 설치하여 시작하십시오. My Oracle Support 전자 메일 주소/사용자 이름을 사용할 경우 보다 간편하게 작업을 진행할 수 있습니다. 자세한 내용을 확인하려면 http://www.oracle.com/support/policies.html을 방문하십시오. 전자 메일 주소/사용자 이름: 보안 문제에 대한 알림을 받을 전자 메일 주소를 제공하지 않았습니다. 보안 문제에 대한 알림을 받지 않겠습니까(예[Y], 아니오[N]) [N]: y 로컬 시스템의 이 ORACLE_HOME에서 실행 중인 Oracle 인스턴스를 종료하십시오. (Oracle 홈 = '/u01/app/oracle/product/11.2.0/db_1') 로컬 시스템이 패치할 준비가 되었습니까? [y|n] y User Responded with: Y Backing up files... Applying sub-patch '17478514' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sdo, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sysman.agent, 10.2.0.4.5 구성 요소를 패치하는 중... oracle.xdk, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sdo.locator, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.nlsrtl.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.xdk.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rman, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '18031668' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.ldap.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.crs, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.precomp.common, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.ldap.rsf.ic, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.deconfig, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rman, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '18522509' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.precomp.common, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rman, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.deconfig, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '19121551' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.precomp.common, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sysman.console.db, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rman, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.ordim.client, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.ordim.jai, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '19769489' to OH '/u01/app/oracle/product/11.2.0/db_1' ApplySession: Oracle 홈에 선택적 구성 요소 [ oracle.sysman.agent, 11.2.0.4.0 ] 이(가) 없거나 상위 버전이 발견되었습니다. oracle.precomp.common, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.ovm, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.xdk, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.util, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.xdk.parser.java, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.oraolap, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.xdk.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rman, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.deconfig, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '20299013' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.rdbms.dv, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.oci, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.precomp.common, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sysman.agent, 10.2.0.4.5 구성 요소를 패치하는 중... oracle.xdk, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sysman.common, 10.2.0.4.5 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.xdk.parser.java, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sysman.console.db, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.xdk.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sysman.common.core, 10.2.0.4.5 구성 요소를 패치하는 중... oracle.rdbms.rman, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.deconfig, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '20760982' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.sysman.console.db, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '21352635' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.sysman.agent, 10.2.0.4.5 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rman, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '21948347' to OH '/u01/app/oracle/product/11.2.0/db_1' ApplySession: Oracle 홈에 선택적 구성 요소 [ oracle.tfa, 11.2.0.4.0 ] 이(가) 없거나 상위 버전이 발견되었습니다. oracle.sysman.agent, 10.2.0.4.5 구성 요소를 패치하는 중... oracle.ovm, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.xdk, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.nlsrtl.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.xdk.parser.java, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sysman.console.db, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.xdk.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sysman.oms.core, 10.2.0.4.5 구성 요소를 패치하는 중... Applying sub-patch '22502456' to OH '/u01/app/oracle/product/11.2.0/db_1' ApplySession: Oracle 홈에 선택적 구성 요소 [ oracle.tfa, 11.2.0.4.0 ] 이(가) 없거나 상위 버전이 발견되었습니다. oracle.precomp.common, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.oraolap.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.olap, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.oraolap, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rman, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '23054359' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.rdbms.dv, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '24006111' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.sqlplus.ic, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sqlplus, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.dbscripts, 11.2.0.4.0 구성 요소를 패치하는 중... Applying sub-patch '24732075' to OH '/u01/app/oracle/product/11.2.0/db_1' oracle.precomp.common, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sysman.plugin.db.main.agent, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sqlplus.ic, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.sqlplus, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.rsf, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.rdbms.util, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.ordim.client, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.ordim.jai, 11.2.0.4.0 구성 요소를 패치하는 중... oracle.ordim.server, 11.2.0.4.0 구성 요소를 패치하는 중... Composite patch 24732075 successfully applied. Log file location: /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/opatch2017-06-17_10-33-30오전_1.log OPatch succeeded.
opatch lsinventory
[oracle@orcl ~]$ opatch lsinventory Oracle Interim 패치 설치 프로그램 버전 11.2.0.3.16 Copyright (c) 2017, Oracle Corporation. All rights reserved. Oracle Home : /u01/app/oracle/product/11.2.0/db_1 Central Inventory : /u01/app/oraInventory from : /u01/app/oracle/product/11.2.0/db_1/oraInst.loc OPatch version : 11.2.0.3.16 OUI version : 11.2.0.4.0 Log file location : /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/opatch2017-06-17_10-36-16오전_1.log Lsinventory Output file location : /u01/app/oracle/product/11.2.0/db_1/cfgtoollogs/opatch/lsinv/lsinventory2017-06-17_10-36-16오전.txt -------------------------------------------------------------------------------- Local Machine Information:: Hostname: oel5 ARU platform id: 226 ARU platform description:: Linux x86-64 설치된 최상위 레벨 제품(1): Oracle Database 11g 11.2.0.4.0 이 Oracle 홈에 1개의 제품이 설치되어 있습니다. Interim 패치(1): Patch 24732075 : applied on Sat Jun 17 10:35:13 KST 2017 Unique Patch ID: 21176096 Patch description: "Database Patch Set Update : 11.2.0.4.170418 (24732075)" Created on 22 Feb 2017, 21:40:49 hrs PST8PDT Sub-patch 24006111; "Database Patch Set Update : 11.2.0.4.161018 (24006111)" Sub-patch 23054359; "Database Patch Set Update : 11.2.0.4.160719 (23054359)" Sub-patch 22502456; "Database Patch Set Update : 11.2.0.4.160419 (22502456)" Sub-patch 21948347; "Database Patch Set Update : 11.2.0.4.160119 (21948347)" Sub-patch 21352635; "Database Patch Set Update : 11.2.0.4.8 (21352635)" Sub-patch 20760982; "Database Patch Set Update : 11.2.0.4.7 (20760982)" Sub-patch 20299013; "Database Patch Set Update : 11.2.0.4.6 (20299013)" Sub-patch 19769489; "Database Patch Set Update : 11.2.0.4.5 (19769489)" Sub-patch 19121551; "Database Patch Set Update : 11.2.0.4.4 (19121551)" Sub-patch 18522509; "Database Patch Set Update : 11.2.0.4.3 (18522509)" Sub-patch 18031668; "Database Patch Set Update : 11.2.0.4.2 (18031668)" Sub-patch 17478514; "Database Patch Set Update : 11.2.0.4.1 (17478514)" Bugs fixed: 17184721, 21538558, 16091637, 18092127, 17381384, 15979965, 18441944 13837378, 16314254, 16731148, 17835048, 13558557, 17201159, 17853498 17246576, 18356166, 18440047, 18681862, 16875449, 19788842, 17296856 21330264, 14010183, 17648596, 17551063, 17025461, 17267114, 22507210 17912217, 17889583, 18202441, 17040764, 16524926, 17478145, 19358317 22148226, 18747196, 18641419, 17036973, 17811789, 14285317, 16542886 18009564, 16618694, 8322815, 16692232, 18247991, 22507234, 17570240 17848897, 17441661, 14034426, 17465741, 16596890, 17437634, 20506706 21343897, 21453153, 18339044, 22321741, 17951233, 18430495, 21787056 22380919, 20506715, 17811429, 19721304, 18230522, 19554106, 19458377 17612828, 6599380, 22092979, 22321756, 17040527, 17811438, 18641461 14657740, 13364795, 21387964, 17346671, 17588480, 18235390, 17889549 19309466, 16472716, 20596234, 18331850, 18641451, 17344412, 21179898 24842886, 17546761, 18203835, 18964939, 18203838, 18203837, 17313525 22195457, 18139690, 16837842, 22296366, 14106803, 17842825, 22657942 21352646, 20657441, 16360112, 22195441, 17389192, 14565184, 17205719 18440095, 22195448, 14354737, 14764829, 13944971, 16571443, 21868720 17186905, 17080436, 18673342, 22905130, 17027426, 19972569, 19972568 19972566, 17282229, 19972564, 16870214, 19615136, 17390431, 18762750 16613964, 18098207, 17957017, 18471685, 19730508, 21538485, 18264060 17323222, 17754782, 17600719, 18317531, 17852463, 17596908, 17655634 16228604, 20074391, 19972570, 18996843, 19854503, 16042673, 17835627 20334344, 18000422, 20861693, 17393683, 17551709, 20506699, 19006849 18456514, 18277454, 17258090, 17174582, 17242746, 16399083, 17824637 17762296, 17397545, 16450169, 12364061, 20067212, 18856999, 19211724 19463893, 21343775, 19463897, 17853456, 18673304, 20004021, 21668627 16194160, 17477958, 16538760, 12982566, 20296213, 18293054, 17610798 19699191, 18135678, 17311728, 16785708, 10136473, 24560906, 17786518 18315328, 18334586, 12747740, 19032867, 18096714, 17390160, 17232014 16422541, 18673325, 18155762, 14015842, 19827973, 22683225, 17726838 18554871, 23177648, 18051556, 20803583, 17922254, 15990359, 21972320 18282562, 16855292, 16668584, 21343838, 20299015, 17446237, 18093615 17694209, 17288409, 17274537, 13955826, 16934803, 17634921, 17501491 16315398, 22683212, 17006183, 13829543, 18191164, 17655240, 19393542 18384391, 21538567, 16198143, 21847223, 17892268, 20142975, 19584068 17165204, 18508861, 21756699, 16901385, 18554763, 18189036, 17443671 17385178, 17936109, 14829250, 20925795, 17478514, 16850630, 13951456 16595641, 15861775, 14054676, 16912439, 17299889, 17297939, 18619917 16833527, 17798953, 17816865, 18607546, 17571306, 21286665, 17341326 17851160, 20558005, 17586955, 19049453, 21051840, 17587063, 16956380 18328509, 14133975, 18061914, 21051833, 18522509, 18765602, 18199537 17332800, 13609098, 18384537, 22502493, 14338435, 17945983, 21067387 16392068, 17752995, 21051862, 25505382, 17237521, 16863422, 18244962 19544839, 24433711, 17156148, 18973907, 17877323, 17449815, 18180390 17088068, 17037130, 20004087, 19466309, 25505371, 11733603, 18084625 21051858, 18674024, 21051852, 18091059, 25369547, 16306373, 18306996 19915271, 18193833, 17787259, 20631274, 16344544, 14692762, 18614015 17346091, 18228645, 17721717, 18436307, 21756677, 11883252, 17891943 22353199, 16384983, 19121551, 12816846, 17982555, 17761775, 22243719 25505394, 17265217, 17071721, 16721594, 21756661, 18262334, 15913355 17891946, 17672719, 17602269, 17239687, 17042658, 17238511, 17811456 17284817, 17752121, 17394950, 16579084, 17011832, 22195465, 14602788 18325460, 24476265, 24476274, 12611721, 16903536, 17006570, 16043574 18783224, 16494615, 21526048, 19197175, 16069901, 17811447, 17308789 22195477, 17865671, 19013183, 17343514, 18316692, 17325413, 16180763 17348614, 14368995, 21983325, 17393915, 16285691, 20331945, 17883081 24316947, 17705023, 17614227, 22195485, 14084247, 13645875, 16777840 19727057, 14852021, 18744139, 18674047, 17716305, 18482502, 17622427 19289642, 22195492, 14458214, 18723434, 17767676, 25505407, 19258504 17786278, 17082983, 21351877, 13498382, 18331812, 16065166, 18031668 22893153, 16943711, 21517440, 17649265, 13866822, 18094246, 24528741 14245531, 17783588, 17082359, 20448824, 18280813, 23330119, 16268425 17302277, 18018515, 17215560, 24411921, 19271443, 17016369, 20777150 23330124, 20441797, 19769489, 25093656, 17545847, 18260550, 13853126 23536835, 17227277, 9756271, 18868646, 17614134, 17546973, 19680952 18704244, 18828868, 18273830, 17050888, 17360606, 16992075, 17375354 12905058, 18362222, 17571039, 17468141, 18436647, 17235750, 21168487 16220077, 16929165 -------------------------------------------------------------------------------- OPatch succeeded.
V. 리스너 생성
netca
VI. Database 생성
dbca
{}
1 개의 댓글
윤병훈
Linux 7에 11.2.0.4를 설치할 때 이슈 해결법