On the source server compress the DB home:
tar -cvf db.tar db
Copy the tar file to the target server:
scp -rp db.tar oracle@targetserver:/Oracle/product/11.2/
Extract the tar file:
tar -xvf db.tar
Run the clone scripts:
cd /Oracle/product/11.2/db/clone/bin
perl clone.pl ORACLE_BASE=/Oracle ORACLE_HOME=/Oracle/product/11.2/db ORACLE_HOME_NAME=11GR2_HOME
./runInstaller -clone -waitForCompletion "ORACLE_BASE=/Oracle" "ORACLE_HOME=/Oracle/product/11.2/db" "ORACLE_HOME_NAME=11GR2_HOME" -silent -noConfig -nowait
tar -cvf db.tar db
Copy the tar file to the target server:
scp -rp db.tar oracle@targetserver:/Oracle/product/11.2/
Extract the tar file:
tar -xvf db.tar
Run the clone scripts:
cd /Oracle/product/11.2/db/clone/bin
perl clone.pl ORACLE_BASE=/Oracle ORACLE_HOME=/Oracle/product/11.2/db ORACLE_HOME_NAME=11GR2_HOME
./runInstaller -clone -waitForCompletion "ORACLE_BASE=/Oracle" "ORACLE_HOME=/Oracle/product/11.2/db" "ORACLE_HOME_NAME=11GR2_HOME" -silent -noConfig -nowait
After installation run the root.sh script as in root account:
/Oracle/product/11.2/db/root.sh
No comments:
Post a Comment