SEE ALSO – > Cloning Oracle Home From One Server To Another Server
In this article, we will explain , how to clone 19c oracle home binary (including patches) , from one server to another server.
oracle clusteringintermediate
by OracleDba
13 views
In this article, we will explain , how to clone 19c oracle home binary (including patches) , from one server to another server.
12345678910111213141516171819202122
oracle@SRCDB$ echo $ORACLE_HOME
/u01/app/oracle/product/19.3.0/dbhome_1
oracle@SRCDB$ <strong><span style="color: #800000;"> /u01/app/oracle/product/19.3.0/dbhome_1/runInstaller -createGoldImage -destinationLocation /oradbtrace -silent</span>
</strong>
Launching Oracle Database Setup Wizard...
Successfully Setup Software.
Gold Image location: /oradbtrace/db_home_2021-04-06_01-33-46PM.zip
oracle@SRCDB:~$ scp /oradbtrace/db_home_2021-04-06_01-33-46PM.zip oracle@TRGDB:/oracle/app/oracle/product/19.9.0.0/dbhome_1/
Password:
db_home_2021-04-06_01-33-46PM.zip 100% 6644MB 51.1MB/s 02:1012345678
TRGDB $ export ORACLE_HOME=/oracle/app/oracle/product/19.9.0.0/dbhome_1/
TRGDB $ cd $ORACLE_HOME
TRGDB $ unzip db_home_2021-04-06_01-33-46PM.zip
TRGDB $ export ORACLE_HOME=/oracle/app/oracle/product/19.9.0.0/dbhome_1/
TRGDB $ cd $ORACLE_HOME
TRGDB $
./runInstallerPlease to add comments
No comments yet. Be the first to comment!