Tuesday 12 July 2016

Installation of HP DP client

Installation of HP DP client is a straight forward process if all goes well.

In this example I'm installing HP DP version 9 on a Linux VM.

Mount the HP DP client iso image.

[root@linclient ~]# mount /dev/sr0 /mnt
mount: block device /dev/sr0 is write-protected, mounting read-only
[root@linclient ~]#

Next go to the LOCAL_INSTALL directroy & run the omnisetup.sh script.

(We only need to install the disk agent & if there is a DB running like oracle in my case then install the oracle integration agent too)

[root@linclient LOCAL_INSTALL]#pwd
/mnt/LOCAL_INSTALL
[root@linclient LOCAL_INSTALL]# ./omnisetup.sh
  No Data Protector software detected on the target system.

  Install (da) Disk Agent (YES/no/Quit)?
yes
  Install (ndmp) NDMP Media Agent (yes/NO/Quit)?
no
  Install (ma) Media Agent (YES/no/Quit)?
no
  Install (cc) User Interface (yes/NO/Quit)?
no
  Install (docs) English Documentation (Guides, Help) (yes/NO/Quit)?
no
  Install (jpn_ls) Japanese Documentation (Guides, Help) (yes/NO/Quit)?
no
  Install (fra_ls) French Documentation (Guides, Help) (yes/NO/Quit)?
no
  Install (chs_ls) Chinese Documentation (Guides, Help) (yes/NO/Quit)?
no
  Install (autodr) Automatic Disaster Recovery Module (yes/NO/Quit)?
no
  Install (StoreOnceSoftware) StoreOnce Software deduplication (yes/NO/Quit)?
no
  Install (vmware) VMware Integration (yes/NO/Quit)?
no
  Install (vepa) Virtual Environment Integration (yes/NO/Quit)?
no
  Install (vmwaregre_agent) VMware Granular Recovery Extension Agent Integration (yes/NO/Quit)?
no
  Install (db2) IBM DB2 Integration (yes/NO/Quit)?
no
  Install (informix) Informix Integration (yes/NO/Quit)?
no
  Install (lotus) Lotus Integration (yes/NO/Quit)?
no
  Install (oracle8) Oracle Integration (yes/NO/Quit)?
yes
  Install (sapdb) SAP DB Integration (yes/NO/Quit)?
no
  Install (saphana) SAP HANA Integration (yes/NO/Quit)?
no
  Install (sap) SAP R/3 Integration (yes/NO/Quit)?
no
  Install (sybase) Sybase Integration (yes/NO/Quit)?
no
  Install (ssea) HP StorageWorks Disk Array XP Agent (yes/NO/Quit)?
no
  Install (smisa) HP StorageWorks EVA SMI-S Agent (yes/NO/Quit)?
no


  Packets going to be (re)installed: omnicf ts_core integ da oracle8


  Installing Core (omnicf)...


Data Protector software package successfully installed
  Installing Core (ts_core)...


Data Protector software package successfully installed
  Installing Core of Integrations (integ)...


Data Protector software package successfully installed
  Installing Disk Agent (da)...


Data Protector software package successfully installed
  Installing Oracle Integration (oracle8)...


Data Protector software package successfully installed
  Client was not imported into the cell.
  Please, perform the import manually

  Installation/upgrade session finished.
[root@linclient LOCAL_INSTALL]#

To verify the setup check for rpms:

[root@linclient LOCAL_INSTALL]# rpm -qa | grep -i OB
oddjob-0.30-5.el6.x86_64
OB2-CORE-A.09.00-1.x86_64
pygobject2-2.20.0-5.el6.x86_64
OB2-DA-A.09.00-1.x86_64
libbasicobjects-0.1.1-11.el6.x86_64
perl-Object-Accessor-0.34-136.el6_6.1.x86_64
OB2-INTEG-A.09.00-1.x86_64
OB2-TS-CORE-A.09.00-1.x86_64
OB2-OR8-A.09.00-1.x86_64
oddjob-mkhomedir-0.30-5.el6.x86_64
[root@linclient LOCAL_INSTALL]#

To check HP DP client version run the following command:

[root@linclient omni]# /opt/omni/bin/omnicc -ver
HP Data Protector A.09.00: OMNICC, internal build 87, built on Wed 11 Jun 2014 12:08:18 AM AEST

In case you want to uninstall the client remove the following rpms:

rpm -e OB2-TS-CORE-A.09.00-1.x86_64
rpm -e OB2-DA-A.09.00-1.x86_64
rpm -e OB2-CORE-A.09.00-1.x86_64

Today I ran into a situation wherein I had to install the oracle integration library on a server with the client already installed.
I had to remove & re-install the clinet from scratch to do that.

1 comment:

Using capture groups in grep in Linux

Introduction Let me start by saying that this article isn't about capture groups in grep per se. What we are going to do here with gr...