Oracle 12.2 OJVM安裝
資料庫版本:Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
OJVM版本:p27923353_122010_Linux-x86-64.zip
1,解壓
2, OPatch utility version 12.2.0.1.7 or later to apply this patch.
[oracle@prod04 27923353]$ /u01/app/oracle/product/12.2.0/dbhome_1/OPatch/opatch version
OPatch Version: 12.2.0.1.14
OPatch succeeded.
3,關閉資料庫,關閉監聽
4,安裝補丁
[oracle@prod04 27923353]$ /u01/app/oracle/product/12.2.0/dbhome_1/OPatch/opatch apply
Oracle Interim Patch Installer version 12.2.0.1.14
Copyright (c) 2018, Oracle Corporation. All rights reserved.
Oracle Home : /u01/app/oracle/product/12.2.0/dbhome_1
Central Inventory : /u01/app/oraInventory
from : /u01/app/oracle/product/12.2.0/dbhome_1/oraInst.loc
OPatch version : 12.2.0.1.14
OUI version : 12.2.0.1.4
Log file location : /u01/app/oracle/product/12.2.0/dbhome_1/cfgtoollogs/opatch/opatch2018-08-06_14-16-40PM_1.log
Verifying environment and performing prerequisite checks...
OPatch continues with these patches: 27923353
Do you want to proceed? [y|n]
y
User Responded with: Y
All checks passed.
Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
(Oracle Home = '/u01/app/oracle/product/12.2.0/dbhome_1')
Is the local system ready for patching? [y|n]
y
User Responded with: Y
Backing up files...
Applying interim patch '27923353' to OH '/u01/app/oracle/product/12.2.0/dbhome_1'
Patching component oracle.javavm.server, 12.2.0.1.0...
Patching component oracle.javavm.server.core, 12.2.0.1.0...
Patching component oracle.rdbms.dbscripts, 12.2.0.1.0...
Patching component oracle.javavm.client, 12.2.0.1.0...
Patching component oracle.rdbms, 12.2.0.1.0...
Patch 27923353 successfully applied.
Log file location: /u01/app/oracle/product/12.2.0/dbhome_1/cfgtoollogs/opatch/opatch2018-08-06_14-16-40PM_1.log
OPatch succeeded.
5,啟動資料庫,應用補丁( Single/Multitenant (CDB/PDB) DB )
[oracle@prod04 27923353]$ sqlplus / as sysdba
SQL*Plus: Release 12.2.0.1.0 Production on Mon Aug 6 14:26:28 2018
Copyright (c) 1982, 2016, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup upgrade
ORACLE instance started.
Total System Global Area 1845493760 bytes
Fixed Size 8793976 bytes
Variable Size 704643208 bytes
Database Buffers 1124073472 bytes
Redo Buffers 7983104 bytes
Database mounted.
Database opened.
SQL> alter pluggable database all open upgrade;
Pluggable database altered.
SQL> exit
[oracle@prod04 27923353]$ /u01/app/oracle/product/12.2.0/dbhome_1/OPatch/datapatch -verbose
SQL Patching tool version 12.2.0.1.0 Production on Mon Aug 6 14:27:21 2018
Copyright (c) 2012, 2018, Oracle. All rights reserved.
Log file for this invocation: /u01/app/oracle/cfgtoollogs/sqlpatch/sqlpatch_13904_2018_08_06_14_27_21/sqlpatch_invocation.log
Connecting to database...OK
Note: Datapatch will only apply or rollback SQL fixes for PDBs
that are in an open state, no patches will be applied to closed PDBs.
Please refer to Note: Datapatch: Database 12c Post Patch SQL Automation
(Doc ID 1585822.1)
Bootstrapping registry and package to current versions...done
Determining current state...done
Current state of SQL patches:
Patch 27923353 (OJVM RELEASE UPDATE: 12.2.0.1.180717 (27923353)):
Installed in the binary registry only
Bundle series 12.2.0.1.180717DBJAN2018RUR:
ID 180717 in the binary registry and ID 180717 in PDB CDB$ROOT, ID 180717 in PDB PDB$SEED, ID 180717 in PDB PDB01
Bundle series DBRU:
Not installed in the binary registry and ID 170718 in PDB CDB$ROOT, ID 170718 in PDB PDB$SEED, ID 170718 in PDB PDB01
Adding patches to installation queue and performing prereq checks...
Installation queue:
For the following PDBs: CDB$ROOT PDB$SEED PDB01
The following patches will be rolled back:
26123830 (DATABASE RELEASE UPDATE 12.2.0.1.170718)
The following patches will be applied:
27923353 (OJVM RELEASE UPDATE: 12.2.0.1.180717 (27923353))
Installing patches...
Patch installation complete. Total patches installed: 6
Validating logfiles...
Patch 26123830 rollback (pdb CDB$ROOT): SUCCESS
logfile: /u01/app/oracle/cfgtoollogs/sqlpatch/26123830/21405588/26123830_rollback_CDB_CDBROOT_2018Aug06_14_27_48.log (no errors)
Patch 27923353 apply (pdb CDB$ROOT): SUCCESS
logfile: /u01/app/oracle/cfgtoollogs/sqlpatch/27923353/22237223/27923353_apply_CDB_CDBROOT_2018Aug06_14_27_49.log (no errors)
Patch 26123830 rollback (pdb PDB$SEED): SUCCESS
logfile: /u01/app/oracle/cfgtoollogs/sqlpatch/26123830/21405588/26123830_rollback_CDB_PDBSEED_2018Aug06_14_29_09.log (no errors)
Patch 27923353 apply (pdb PDB$SEED): SUCCESS
logfile: /u01/app/oracle/cfgtoollogs/sqlpatch/27923353/22237223/27923353_apply_CDB_PDBSEED_2018Aug06_14_29_10.log (no errors)
Patch 26123830 rollback (pdb PDB01): SUCCESS
logfile: /u01/app/oracle/cfgtoollogs/sqlpatch/26123830/21405588/26123830_rollback_CDB_PDB01_2018Aug06_14_29_09.log (no errors)
Patch 27923353 apply (pdb PDB01): SUCCESS
logfile: /u01/app/oracle/cfgtoollogs/sqlpatch/27923353/22237223/27923353_apply_CDB_PDB01_2018Aug06_14_29_10.log (no errors)
SQL Patching tool complete on Mon Aug 6 14:30:07 2018
[oracle@prod04 27923353]$ sqlplus / as sysdba
SQL*Plus: Release 12.2.0.1.0 Production on Mon Aug 6 14:36:34 2018
Copyright (c) 1982, 2016, Oracle. All rights reserved.
Connected to:
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
SQL> shutdown
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
Total System Global Area 1845493760 bytes
Fixed Size 8793976 bytes
Variable Size 704643208 bytes
Database Buffers 1124073472 bytes
Redo Buffers 7983104 bytes
Database mounted.
Database opened.
SQL> alter pluggable database all open;
Pluggable database altered.
SQL> show pdbs;
CON_ID CON_NAME OPEN MODE RESTRICTED
---------- ------------------------------ ---------- ----------
2 PDB$SEED READ ONLY NO
3 PDB01 READ WRITE NO
6,檢查補丁情況
SQL> select patch_id,action,status,BUNDLE_SERIES from dba_registry_sqlpatch;
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/20747382/viewspace-2199240/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Oracle 12.2 GRID的安裝方式Oracle
- 靜默安裝Oracle12.2資料庫Oracle資料庫
- 12.2 Grid RUR 安裝
- Oracle OracleEBS-R12.2 安裝簡體中文詳解Oracle
- Oracle OJVM apply faile-拾億OracleJVMAPPAI
- 12.2 grid 安裝空間要求
- 【ASK_ORACLE】安裝Oracle RAC 12.2的GI軟體時報錯CLSRSC-614Oracle
- oracle安裝:OUI安裝Oracle(圖形介面安裝)OracleUI
- 【[Oracle】-【安裝】-Cent OS安裝Oracle ClientOracleclient
- Oracle 安裝與解除安裝Oracle
- Oracle 12.2 建立分離JobsOracle
- 安裝oracleOracle
- ORACLE TEXT安裝與解除安裝Oracle
- Oracle 12.2 長識別符號Oracle符號
- Oracle Database In-Memory Certified with EBS 12.2OracleDatabase
- Oracle RUR 安裝Oracle
- golang oracle 安裝GolangOracle
- oracle安裝配置Oracle
- oracle安裝patchOracle
- 安裝oracle 9.2.0.4Oracle
- aix安裝oracleAIOracle
- oracle解除安裝Oracle
- ORACLE 解除安裝Oracle
- [oracle]centos 7 安裝oracleOracleCentOS
- 【Oracle】--"任性"Oracle安裝之旅Oracle
- oracle 19c 安裝、解除安裝Oracle
- ORACLE 12.2中的更改與新功能Oracle
- Oracle 12.2 RAC on Linux Best Practice DocumentationOracleLinux
- Oracle Database 12.2本機配置ADGOracleDatabase
- 靜默方式安裝、升級oracle(一): 安裝oracle軟體Oracle
- 「Oracle」Oracle 資料庫安裝Oracle資料庫
- OJVM+GI PSU補丁升級JVM
- Docker中安裝OracleDockerOracle
- ubuntu下安裝oracleUbuntuOracle
- Linux安裝oracleLinuxOracle
- Oracle Payment Interface安裝Oracle
- Oracle安裝錯誤Oracle
- 解除安裝ORACLE CRSOracle