Tuesday, June 14, 2011

Install HP Data Protecctor 6.2 Client [and use in RMAN]

We have followed below steps while installing HP Data Protecctor 6.2 Client:

For windows:

1. Add hostname and IP of target machine [client] & DP Cell Manager in hosts file of the target machine like below:
on windows C:\Windows\System32\drivers\etc\hosts
on linux /etc/hosts

192.168.81.209 DP_CLIENT_HOSTNAME.domain.com DP_CLIENT_HOSTNAME
192.168.9.23 DP_CELL_MANAGER.domain.com DP_CELL_MANAGER

2. unzip the HPDP sw dump
on windows change the locaion to: ESD_HP_DP_6.2_for_Windows_and_Media_Operation_TD586_15000_01\TD586-15000-01\WINDOWS_OTHER\i386

- Double Click setup --<<< use "run as administrator" or install using Administrator user
- select installation type: cleint
- Enter: Cell manager hostname [as entered in the hosts file] and "check response"
- From component list select: Disk Agent, Media Agent & oracle integration [under Integration]
- start
- Finish
Now locate the "orasbt.dll" which is needed in RMAN command.
So, RMAN Command on window may look as below:
run {
allocate channel 'dev_0' type 'sbt_tape'
parms 'SBT_LIBRARY=D:\OmniBack\bin\orasbt.dll';
restore database;
}


For Linux/Unix:

We need HPUX distribution of HPDP to install on both HPUX and linux.
Run below set of commands as "root":

$ tar -zxvf ESD_HP_DP_6.2_for_HP_UX_PA_TD586_15001_01.tar.gz
$ cd TD586-15001-01/LOCAL_INSTALL/
$ ./omnisetup.sh -server DP_CELL_MANAGER.domain.com -install da,ma,oracle8
# here as DP_CELL_MANAGER.domain.com is entered in the hosts file



Now locate the "libob2oracle8.so" [for x64 machine libob2oracle8_64bit.so] which is needed in RMAN command:
So, RMAN Command on window may look as below:
run {
allocate channel 'dev_0' type 'sbt_tape'
parms 'SBT_LIBRARY=/opt/omni/lib/libob2oracle8.so';
restore database;
}

Thank to :http://saifur-shaon.blogspot.com/2011/01/dml-over-dblink-ora-01031.html

No comments:

Post a Comment