Backing up and restoring HP Systems Insight Manager data files in an HP-UX or Linux environment

Size: px
Start display at page:

Download "Backing up and restoring HP Systems Insight Manager data files in an HP-UX or Linux environment"

Transcription

1 Backing up and restoring HP Systems Insight Manager data files in an HP-UX or Linux environment HOWTO Abstract... 2 Introduction... 2 Saving and restoring data files... 3 Saving and restoring files using PostgreSQL utilities... 3 Saving data files using PostgreSQL utilities... 3 Restoring data files for PostgreSQL... 5 Saving and restoring files for an Oracle database... 7 Saving data files for use with Oracle... 7 Restoring data files for use with Oracle... 8 For more information Call to action... 11

2 Abstract HP Systems Insight Manager (HP SIM) is a flexible management utility for an enterprise environment employing HP ProLiant, BladeSystem, StorageWorks, and/or Integrity solutions. The system database and configuration files used by HP SIM should be backed up regularly to allow recovery from a catastrophic system failure or an instance of corrupted files. This paper describes, step-by-step, how to back up the HP SIMdata files and perform a restore if a software reinstallation becomes necessary on a system running the HP-UX or Linux operating system. This paper makes the following assumptions: The reader is familiar with IT administration policies and practice. The reader is familiar with the operating system platform implemented by his/her data center. The reader has reviewed the HP SIM 5.0 Installation and User Guide and/or the HP SIM Technical Reference Guide. Introduction HP Systems Insight Manager (HP SIM) is the foundation for the HP unified infrastructure management strategy. HP SIM provides hardware-level management for HP ProLiant, HP Integrity, and HP 9000 servers; HP BladeSystems; and HP StorageWorks MSA/EVA/XP storage arrays all from a single console in the data center or in a remote location. Server and storage information for a network is kept in a database compiled by HP SIM. The system administrator should back up this database and associated configuration files regularly to allow for a smooth reinstallation or restore process if a catastrophic equipment or software failure should occur. Additional reference data is available in the form of on-line man pages, which provide quick command-line access to specific topics such as HP SIM commands and parameters. The HP SIM documents listed previously, the man pages, and additional HP SIM support documents are available at the HP SIM information library at the following URL: NOTE: This paper describes the backup and restoration of a same system for fault insurance purposes only. It does not apply to system migration or software upgrades. For migration information, refer to the HOWTO paper at the following URL: 2

3 Saving and restoring data files HP SIM running under the HP-UX or Linux operating system can use either a PostgreSQL or Oracle database to store collected information about systems on the network. Saving and restoring files using PostgreSQL utilities These procedures describe backing up and restoring data files used with PostgreSQL utilities. Saving data files using PostgreSQL utilities Saving (backing up) the database with PostgreSQL requires changing the administrator s password and saving the database and associated files. Follow the procedure defined below. NOTE: When executing PostgreSQL commands, file pathnames depend on how and where PostgreSQL is installed. Your actual pathname may differ from those provided in the following example. 1. If HP SIM is running, enter mxstop in the command line to stop the HP SIM daemons. 2. To verify that all HP SIM mx processes have stopped, run the command ps ef grep mx. 3. Using the file management utility of your choice, save the configuration files listed in Table 1. Table 1. Configuration files to be saved Directory or file /etc/opt/mx/config/ /var/opt/mx/config/ /etc/opt/hp/sslshare/ /var/opt/mx/logs/mx.log /opt/mx/patch /opt/mx/bin/server_cert.pem /opt/mx/bin/cliclientconfig. cfg /var/opt/mx/output Description Directory of configuration files Additional configuration files Shared openssl certificate directory Audit file Program updates (required if HP SIM is to be reinstalled) Certificate used by the Command Line Interface (CLI) CLI configuration file (optional) Contains job result output. NOTE: The file permissions must be preserved during the backup process. The Tape Archive (TAR) utility preserves file permissions. 4. Save any existing user-supplied (custom) files contained in the HP SIM directory tree such as tool definition files (TDEFs), Management Information Bases (MIBs), login prompt, actions, etc. 3

4 5. Open the /etc/opt/mx/config/database.props file and check the property value for hp.database.username. The default PostgreSQL user for HP SIM is mxadmin. 6. The password generated by HP SIM for mxadmin must be changed before backing up the database. To change the password, at the HP SIM command line enter the following: /opt/mx/bin/mxpassword m x MxDBUserPassword=newpassword where newpassword is the new password. 7. Stop the PostgreSQL service with the stop command (full command path may vary depending on the PostgreSQL install location): For HP-UX, enter the following: /sbin/init.d/hpsmdb stop For Linux, enter the following: /etc/init.d/postgresql stop 8. Restart the PostgreSQL service with the start command (full command path may vary depending on the PostgreSQL install location): For HP-UX, enter: /sbin/init.d/hpsmdb start For Linux, enter: /etc/init.d/postgresql start NOTE: It may take up to several minutes for PostgreSQL to start. To check the status in Linux, enter the postgresql status command ( etc/init.d/postgresqlstatus ). 9. Enter the following at the command line: For HP-UX: cd /opt/hpsmdb/pqsql/bin./pg_dump h U mxadmin p insight_v1_0 > savehpsimdb For Linux: cd /usr/bin pg_dump h U mxadmin p 5432 insight_v1_0 > savehpsimdb where: p = port number. To find the port number, open /etc/opt/mx/config/database.props and look for the property value of hp.database.portnumber. insight_v1_0 = HP SIM database name. To find the database name, open the file /etc/opt/mx/config/database.props and look for the property value of hp.database.databasename. savehpsimdb = the filename of the saved database. 10. When prompted for a password, enter the password defined in step 6 of this procedure. End of procedure. 4

5 Restoring data files for PostgreSQL To restore the database from a saved copy, use the following procedure: 1. If performing a reinstallation of HP SIM, proceed as directed in the HP SIM 5.0 Installation and User Guide available at the following URL: 2. If HP SIM is running, enter mxstop in the command line to stop the HP SIM daemons. 3. To verify that all HP SIM mx processes have stopped, run the command: ps ef grep mx For HP-UX, proceed to step 4. For Linux, proceed to step For HP-UX: a. Uninstall the SysMgmtDB with the following command: swremove -x enforce_dependencies=false SysMgmtDB b. Install Sys Management DB from hpsim's Depot file with the following command: swinstall -s /hpsim.depot SysMgmtDB 5. For Linux: a. To edit the pg_hba.conf file, enter: vi /var/lib/pgsql/data/pg_hba.conf and add: local insight_v1_0 mxadmin password local all all trust host insight_v1_0 root trust host template1 postgres trust b. Stop the PostegreSQL service with the following command: /etc/init.d/postgresql stop c. Restart the PostegreSQL service with the following command: /etc/init.d/postgresql start d. Shift the user : Login as postgres using the following command: su postgres e. To delete the database, enter: cd /usr/bin and then run the command: dropdb p 5432 h i e insight_v1_0 6. Create database with the name insight_v1_0 using the following command: For HP-UX: cd /opt/hpsmdb/pgsql/bin./createdb -O hpsmdb -h p U hpsmdb insight_v1_0 For Linux: cd /usr/bin Createdb O postgres h p 5432 U postgres insight_v1_0 5

6 7. For Linux, proceed to step 8. For HP-UX, create user named mxadmin (with No permission to create DB and user) using the following command:./createuser -h p U hpsmdb mxadmin 8. At the HP SIM command line, enter the following command: For HP-UX:./psql q h U mxadmin p f savehpsimdb -d insight_v1_0 For Linux: psql q h U mxadmin p 5432 f savehpsimdb -d insight_v1_0 where: savehpsimdb = the name of the backup file to be restored. p = port number. To find the port number, open /etc/opt/mx/config/database.props and look for the property value of hp.database.portnumber insight_v1_0 = HP SIM database name. To find the database name, open the file /etc/opt/mx/config/database.props and look for the property value of hp.database.databasename 9. When prompted, enter the password defined in the Saving data files using PostgreSQL utilities step Using an appropriate file management utility, restore the configuration files listed in Table 2. Table 2. Configuration files to be restored Directory or file /etc/opt/mx/config/ /var/opt/mx/config/ /etc/opt/hp/sslshare/ /var/opt/mx/logs/mx.log /opt/mx/patch /opt/mx/bin/server_cert.pem /opt/mx/bin/cliclientconfig. cfg /var/opt/mx/output Description Directory of configuration files Additional configuration files Shared openssl certificate directory Audit file Program updates (required if HP SIM is to be reinstalled) Certificate used by the Command Line Interface (CLI) CLI configuration file (optional) Contains job result output. 6

7 NOTE: The file permissions must be preserved during the backup process. The Tape Archive (TAR) utility preserves file permissions. 11. Restore any existing user-supplied (custom) files contained in the HP SIM directory tree such as tool definition files (TDEFs), Management Information Bases (MIBs), login prompt, and actions. 12. Initialize HP SIM by entering mxinitconfig a in the command line so that the database and the restored configuration files are updated in HP SIM. End of procedure. Saving and restoring files for an Oracle database The following procedures describe saving (backing up) and restoring data files for a system using an Oracle database with HP SIM. The backup and restore processes must be conducted by a user with Oracle DatabaseAdminstrator (DBA) privileges. Saving data files for use with Oracle To save Oracle database files, use the following procedure: 1. If HP SIM is running, enter mxstop in the command line to stop the HP SIM daemons. 2. To verify that all HP SIM mx processes have stopped, run the following command: ps ef grep mx 3. Using the file management utility of your choice, save the configuration files listed in Table 3. Table 3. Configuration files to be saved Directory or file /etc/opt/mx/config/ /var/opt/mx/config/ /etc/opt/hp/sslshare/ /var/opt/mx/logs/mx.log /opt/mx/patch /opt/mx/bin/server_cert.pem /opt/mx/bin/cliclientconfig. cfg /var/opt/mx/output Description Directory of configuration files Additional configuration files Shared openssl certificate directory Audit file Program updates (required if HP SIM is to be reinstalled) Certificate used by the Command Line Interface (CLI) CLI configuration file (optional) Contains job result output. NOTE: The file permissions must be preserved during the backup process. The Tape Archive (TAR) utility preserves file permissions. 7

8 4. Save any existing user-supplied (custom) files contained in the HP SIM directory tree such as tool definition files (TDEFs), Management Information Bases (MIBs), login prompt, and actions. 5. Open the /etc/opt/mx/config/database.props file and check the property value for hp.database.username. The backup and restore process must be conducted by a user with Oracle DatabaseAdminstrator (DBA) privileges. 6. Back up Oracle data files by Exporting the Database as follows, making note of the database name, DBA user name, and DBA password: a. At the Oracle server console command line, enter the following command: set ORACLE_SID=dbname and press Enter. b. Type the exp command and press Enter. Table 4 lists the Oracle parameters that will be offered and the recommended action. Table 4. Oracle database parameters Parameter Username Password Action Enter the username of dba and press Enter. Enter the password of dba-user-password and press Enter. Array fetch buffer size Press Enter to select default of Export file EXPDAT.DMP <Path\backup.dump> (1) E (ntire database) (2) U (sers) (3) T (ables) Export grants (yes/no) Export table data (yes/no) Compress extents (yes/no) Enter file name and path to dump the database and press Enter. Enter E and press Enter. After selecting the Compress extents default parameter of No, the database backup will be initialized. End of procedure. Restoring data files for use with Oracle To restore the Oracle database from a saved copy, use the following procedure: 1. If using an existing Oracle installation, delete the backed-up database on the Oracle server. This needs to be done since HPSIM requires an empty database for initialization. 2. Create a new database with the same name as that of the backed up database. 3. Install HP SIM as directed in the HP SIM 5.0 Installation and User Guide available at the following URLs: For HP-UX (Unix) For Linux 8

9 NOTE: The HP SIM command mxoracleconfig must be used to configure HP SIM to use an Oracle database. 4. If HP SIM is running, enter mxstop in the command line to stop the HP SIM daemons. 5. To verify that all HP SIM mx processes have stopped, run the following command: ps ef grep mx 6. Restore the configuration files listed in Table 5. Table 5. Configuration files to be restored Directory or file /etc/opt/mx/config/ /var/opt/mx/config/ /etc/opt/hp/sslshare/ (for HP- UX) /opt/hp/sslshare (for Linux) /var/opt/mx/logs/mx.log /opt/mx/patch /opt/mx/bin/server_cert.pem /opt/mx/bin/cliclientconfig. cfg /var/opt/mx/output Description Directory of configuration files Additional configuration files Shared openssl certificate directory Audit file Program updates (required if HP SIM is to be reinstalled) Certificate used by the Command Line Interface (CLI) CLI configuration file (optional) Contains job result output. 7. Restore any existing user-supplied (custom) files contained in the HP SIM directory tree, such as tool definition files (TDEFs), Management Information Bases (MIBs), login prompt, actions, etc. 8. Complete the following steps to restore the database file by importing from the backup created in step 6 of Saving data files for use with Oracle : a. Delete the database on the Oracle server created in step 2 of this procedure. b. Create a database (with the same name as the one just deleted in the step 8a), and create a user with DBA privileges (with the same username used while backup was taken as in Step 6 of the Saving data files for use with Oracle ). c. At the Oracle server console, enter the following command: set ORACLE_SID=<dbname> where dbname is the database just created in 8b. d. Enter the command imp and press Enter. Table 6 lists the Oracle database parameters that will be offered and the recommended action. 9

10 Table 6. Oracle database parameters Parameter Username Password Import file EXPDAT.DMP <c:\backup.dmp> Action Enter the username of dba and press Enter. Enter the password of dba-user-password and press Enter. Enter file name and path of the database to restore and press Enter. Insert buffer size Press Enter to select default value of List contents of import file only (yes/no) Ignore create error due to object existence (yes/no) Import grants (yes/no) Import table data (yes/no) Import entire export file (yes/no) Username Table (T) Partition (T:P) or if done (.) Enter dba and press Enter. Enter the dot character (.) and press Enter to begin the database restoration. 9. At the HP SIM command line, enter the command mxinitconfig a so that the database and the restored configuration files are updated in HP SIM. End of procedure. 10

11 For more information For additional information, visit Call to action Send comments about this paper to 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. Linux is a registered trademark of Linus Torvalds in the United States, other countries, or both. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. TC060802HT, August 1, 2006

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment

Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment Technical white paper Backing up and restoring HP Systems Insight Manager 6.0 or greater data files in a Windows environment Table of contents Abstract 2 Introduction 2 Saving and restoring data files

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 Disaster Recovery Guide Table of contents Overview... 2 General recovery process... 2 Recovering the HPDM Server... 5 Backing up the data... 5 Installing the

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 Database Troubleshooting Guide Table of contents Overview... 2 Using MS SQL Server... 2 Using PostgreSQL... 3 Troubleshooting steps... 3 Migrate Database...

More information

Using HP ProLiant Network Teaming Software with Microsoft Windows Server 2008 Hyper-V or with Microsoft Windows Server 2008 R2 Hyper-V

Using HP ProLiant Network Teaming Software with Microsoft Windows Server 2008 Hyper-V or with Microsoft Windows Server 2008 R2 Hyper-V Using HP ProLiant Network Teaming Software with Microsoft Windows Server 2008 Hyper-V or with Microsoft Windows Server 2008 R2 Hyper-V HOWTO, 4 TH Edition Introduction... 2 Software requirements... 2 Order

More information

Open-Xchange Server Backup Whitepaper

Open-Xchange Server Backup Whitepaper OPEN-XCHANGE Whitepaper Open-Xchange Server Backup Whitepaper How to back up and restore your Groupware Data v1.20 Copyright 2005, OPEN-XCHANGE Inc. This document is the intellectual property of Open-Xchange

More information

AVALANCHE MC 5.3 AND DATABASE MANAGEMENT SYSTEMS

AVALANCHE MC 5.3 AND DATABASE MANAGEMENT SYSTEMS AVALANCHE MC 5.3 AND DATABASE MANAGEMENT SYSTEMS Avalanche Mobility Center (MC) offers support for other database management systems (DBMS) as alternatives to the built-in PostgreSQL DBMS. This was prompted

More information

HP PolyServe Software 4.1.0 upgrade guide

HP PolyServe Software 4.1.0 upgrade guide HP StorageWorks HP PolyServe Software 4.1.0 upgrade guide This document describes how to upgrade to HP PolyServe Matrix Server 4.1.0, HP PolyServe Software for Microsoft SQL Server 4.1.0, and HP PolyServe

More information

HP SCOM Management Packs User Guide

HP SCOM Management Packs User Guide HP SCOM Management Packs User Guide Abstract This guide describes the HP extensions for Microsoft System Center Operations Manager that are provided as part of HP Insight Control for Microsoft System Center.

More information

HP-UX Role-Based Access Control B.11.31.04 Release Notes

HP-UX Role-Based Access Control B.11.31.04 Release Notes HP-UX Role-Based Access Control B.11.31.04 Release Notes HP Part Number: 5992-0628 Published: June 2007 Edition: E028 Copyright 2001 2007 Hewlett-Packard Development Company L.P. Confidential computer

More information

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active

HP AppPulse Active. Software Version: 2.2. Real Device Monitoring For AppPulse Active HP AppPulse Active Software Version: 2.2 For AppPulse Active Document Release Date: February 2015 Software Release Date: November 2014 Legal Notices Warranty The only warranties for HP products and services

More information

WHITE PAPER. HP Guide to System Recovery and Restore

WHITE PAPER. HP Guide to System Recovery and Restore WHITE PAPER January 2003 Prepared By PSG Product Software Engineering Hewlett-Packard Company CONTENTS Purpose3 Using Safe Mode To Diagnose And Correct Problems 4 Using the Recovery Console To Repair Damaged

More information

HP VMware ESXi 5.0 and Updates Getting Started Guide

HP VMware ESXi 5.0 and Updates Getting Started Guide HP VMware ESXi 5.0 and Updates Getting Started Guide Abstract This guide is intended to provide setup information for HP VMware ESXi. HP Part Number: 616896-002 Published: August 2011 Edition: 1 Copyright

More information

HP One-Button Disaster Recovery (OBDR) Solution for ProLiant Servers

HP One-Button Disaster Recovery (OBDR) Solution for ProLiant Servers Reference guide HP One-Button Disaster Recovery (OBDR) Solution for ProLiant Servers Reference guide Contents One button disaster recovery (OBDR) 2 Requirements 2 HP tape drive and server support 2 Creating

More information

OpenGeo Suite for Linux Release 3.0

OpenGeo Suite for Linux Release 3.0 OpenGeo Suite for Linux Release 3.0 OpenGeo October 02, 2012 Contents 1 Installing OpenGeo Suite on Ubuntu i 1.1 Installing OpenGeo Suite Enterprise Edition............................... ii 1.2 Upgrading.................................................

More information

HP SCOM Management Packs User Guide

HP SCOM Management Packs User Guide HP SCOM Management Packs User Guide Abstract This guide describes the HP extensions for Microsoft System Center Operations Manager that are provided as part of HP Insight Control for Microsoft System Center.

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Full domain account name login...

More information

Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software

Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software Samba on HP StorageWorks Enterprise File Services (EFS) Clustered File System Software Installation and integration guide Abstract... 2 Introduction... 2 Application overview... 2 Application configuration...

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Backup Exec 11D VSS Snapshots and Transportable Offhost Backup Legal Notices Warranty The only warranties for HP products and services are set

More information

Configure Cisco Emergency Responder Disaster Recovery System

Configure Cisco Emergency Responder Disaster Recovery System Configure Cisco Emergency Responder Disaster Recovery System Disaster Recovery System overview, page 1 Backup and restore procedures, page 2 Supported features and components, page 4 System requirements,

More information

Backing up and restoring HP Insight Software v3.10 Central Management System (Windows)

Backing up and restoring HP Insight Software v3.10 Central Management System (Windows) Backing up and restoring HP Insight Software v3.10 Central Management System (Windows) Abstract... 2 Introduction... 2 Scope... 3 Preparing your environment for backup... 4 Saving your environment... 13

More information

HP ProLiant Cluster for MSA1000 for Small Business... 2. Hardware Cabling Scheme... 3. Introduction... 3. Software and Hardware Requirements...

HP ProLiant Cluster for MSA1000 for Small Business... 2. Hardware Cabling Scheme... 3. Introduction... 3. Software and Hardware Requirements... Installation Checklist HP ProLiant Cluster for HP StorageWorks Modular Smart Array1000 for Small Business using Microsoft Windows Server 2003 Enterprise Edition November 2004 Table of Contents HP ProLiant

More information

HP Embedded SATA RAID Controller

HP Embedded SATA RAID Controller HP Embedded SATA RAID Controller User Guide Part number: 391679-002 Second Edition: August 2005 Legal notices Copyright 2005 Hewlett-Packard Development Company, L.P. The information contained herein is

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

EMC NetWorker Module for Databases and Applications Release 1.0

EMC NetWorker Module for Databases and Applications Release 1.0 EMC NetWorker Module for Databases and Applications Release 1.0 Installation Guide P/N 300-009-222 REV A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Copyright

More information

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001

HP External Hard Disk Drive Backup Solution by Seagate User Guide. November 2004 (First Edition) Part Number 373652-001 HP External Hard Disk Drive Backup Solution by Seagate User Guide November 2004 (First Edition) Part Number 373652-001 Copyright 2004 Hewlett-Packard Development Company, L.P. The information contained

More information

for QSS/OASIS Presented by Bill Genske Session 135

for QSS/OASIS Presented by Bill Genske Session 135 Quintessential School Systems Session 135 SQL Server Administration for QSS/OASIS Presented by Bill Genske Gary Jackson Copyright Quintessential School Systems, 2011 All Rights Reserved 867 American Street

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 LDAP Troubleshooting Guide Table of contents Introduction... 2 HPDM LDAP-related context and background... 2 LDAP in HPDM... 2 Configuring User Authentication...

More information

Event Monitoring Service Version A.04.20.11 Release Notes

Event Monitoring Service Version A.04.20.11 Release Notes Event Monitoring Service Version A.04.20.11 Release Notes HP-UX 11i v1 December 2006 Manufacturing Part Number: B7609-90039 December 2006 Copyright 2006 Hewlett-Packard Development Company, L.P. Legal

More information

How to manage non-hp x86 Windows servers with HP SIM

How to manage non-hp x86 Windows servers with HP SIM How to manage non-hp x86 Windows servers with HP SIM Introduction... 3 HP SIM inventory for non-hp x86 Windows servers... 3 Discovery and Identification... 3 Events... 4 System properties and reports...

More information

HP ProLiant Essentials Vulnerability and Patch Management Pack Release Notes

HP ProLiant Essentials Vulnerability and Patch Management Pack Release Notes HP ProLiant Essentials Vulnerability and Patch Management Pack Release Notes Supported platforms... 2 What s new in version 2.1... 2 What s new in version 2.0.3... 2 What s new in version 2.0.2... 2 What

More information

Backup and Recovery User Guide

Backup and Recovery User Guide Backup and Recovery User Guide Copyright 2007, 2008 Hewlett-Packard Development Company, L.P. Windows is a U.S. registered trademark of Microsoft Corporation. The information contained herein is subject

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

FTP Server Configuration

FTP Server Configuration FTP Server Configuration For HP customers who need to configure an IIS or FileZilla FTP server before using HP Device Manager Technical white paper 2 Copyright 2012 Hewlett-Packard Development Company,

More information

Using Integrated Lights-Out in a VMware ESX environment

Using Integrated Lights-Out in a VMware ESX environment Using Integrated Lights-Out in a VMware ESX environment 2 nd Edition Technology Brief Abstract... 2 ilo architecture in a virtualized environment... 2 The benefits of ilo in a virtualized environment...

More information

HP StorageWorks EBS Solutions guide for VMware Consolidated Backup

HP StorageWorks EBS Solutions guide for VMware Consolidated Backup HP StorageWorks EBS Solutions guide for VMware Consolidated Backup Executive Summary... 2 Audience... 2 Information not provided... 2 Introduction... 3 HP Enterprise backup environment... 3 Virtual infrastructure...

More information

HP A-IMC Firewall Manager

HP A-IMC Firewall Manager HP A-IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW101-20110805 Legal and notice information Copyright 2011 Hewlett-Packard Development Company, L.P. No part of this

More information

HP Personal Workstations Step-By- Step Instructions for Upgrading Windows Vista or Windows XP Systems to Windows 7

HP Personal Workstations Step-By- Step Instructions for Upgrading Windows Vista or Windows XP Systems to Windows 7 HP Personal Workstations Step-By- Step Instructions for Upgrading Windows Vista or Windows XP Systems to Windows 7 September 15, 2009 Introduction HP is committed to supporting our customer s operating

More information

HP Insight Diagnostics Online Edition. Featuring Survey Utility and IML Viewer

HP Insight Diagnostics Online Edition. Featuring Survey Utility and IML Viewer Survey Utility HP Industry Standard Servers June 2004 HP Insight Diagnostics Online Edition Technical White Paper Featuring Survey Utility and IML Viewer Table of Contents Abstract Executive Summary 3

More information

Backup and Recovery User Guide

Backup and Recovery User Guide Backup and Recovery User Guide Copyright 2009 Hewlett-Packard Development Company, L.P. Windows is a U.S. registered trademark of Microsoft Corporation. Product notice This user guide describes features

More information

RAID 1(+0): breaking mirrors and rebuilding drives

RAID 1(+0): breaking mirrors and rebuilding drives RAID 1(+0): breaking mirrors and rebuilding drives How to, 5 th edition Introduction... 2 Splitting a mirrored array using the Array Configuration Utility... 2 Recombining a split mirrored array using

More information

HP Enterprise Integration module for SAP applications

HP Enterprise Integration module for SAP applications HP Enterprise Integration module for SAP applications Software Version: 2.50 User Guide Document Release Date: May 2009 Software Release Date: May 2009 Legal Notices Warranty The only warranties for HP

More information

NetNumen U31 R06. Backup and Recovery Guide. Unified Element Management System. Version: V12.14.30

NetNumen U31 R06. Backup and Recovery Guide. Unified Element Management System. Version: V12.14.30 NetNumen U31 R06 Unified Element Management System Backup and Recovery Guide Version: V12.14.30 ZTE CORPORATION No. 55, Hi-tech Road South, ShenZhen, P.R.China Postcode: 518057 Tel: +86-755-26771900 Fax:

More information

Managing Microsoft Hyper-V Server 2008 R2 with HP Insight Management

Managing Microsoft Hyper-V Server 2008 R2 with HP Insight Management Managing Microsoft Hyper-V Server 2008 R2 with HP Insight Management Integration note, 4th Edition Introduction... 2 Overview... 2 Comparing Insight Management software Hyper-V R2 and VMware ESX management...

More information

HP Business Service Management

HP Business Service Management HP Business Service Management for the Windows and Linux operating systems Software Version: 9.10 Business Process Insight Server Administration Guide Document Release Date: August 2011 Software Release

More information

Backup and Recovery using PITR Mark Jones. 2015 EnterpriseDB Corporation. All rights reserved. 1

Backup and Recovery using PITR Mark Jones. 2015 EnterpriseDB Corporation. All rights reserved. 1 Backup and Recovery using PITR Mark Jones 2015 EnterpriseDB Corporation. All rights reserved. 1 Agenda Introduction Business Impact Vs Cost Downtime Scenarios Backup Methods SQL Dump Cold Backup (Offline

More information

Module 7. Backup and Recovery

Module 7. Backup and Recovery Module 7 Backup and Recovery Objectives Backup Types SQL Dump Cluster Dump Offline Copy Backup Online Backups Point-In Time Recovery Backup As with any database, PostgreSQL database should be backed up

More information

HP Insight Remote Support

HP Insight Remote Support HP Insight Remote Support Monitored Devices Configuration Guide Software Version: 7.4 Document Release Date: August 2015 Software Release Date: August 2015 Legal Notices Warranty The only warranties for

More information

EMC Avamar 7.2 for IBM DB2

EMC Avamar 7.2 for IBM DB2 EMC Avamar 7.2 for IBM DB2 User Guide 302-001-793 REV 01 Copyright 2001-2015 EMC Corporation. All rights reserved. Published in USA. Published June, 2015 EMC believes the information in this publication

More information

Using Secure4Audit in an IRIX 6.5 Environment

Using Secure4Audit in an IRIX 6.5 Environment Using Secure4Audit in an IRIX 6.5 Environment Overview... 3 Icons... 3 Installation Reminders... 4 A Very Brief Overview of IRIX System auditing... 5 Installing System Auditing... 5 The System Audit Directories...

More information

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide

HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide HP Intelligent Management Center v7.1 Virtualization Monitor Administrator Guide Abstract This guide describes the Virtualization Monitor (vmon), an add-on service module of the HP Intelligent Management

More information

HP Insight Remote Support

HP Insight Remote Support HP Insight Remote Support Upgrade Guide Software Version: 7.4 Document Release Date: February 2016 Software Release Date: August 2015 Legal Notices Warranty The only warranties for HP products and services

More information

HP-UX Support Tools Manager (STM) Release Notes

HP-UX Support Tools Manager (STM) Release Notes HP-UX Support Tools Manager (STM) Release Notes HP-UX 11i v3 Version: B.11.31.23.02 HP Part Number: 820365-001 Published: March 2015 Edition: 1 (April 2015) Legal Notices Copyright 2003, 2015 Hewlett-Packard

More information

Advanced Solutions of Microsoft SharePoint Server 2013 (20332) H6C76S

Advanced Solutions of Microsoft SharePoint Server 2013 (20332) H6C76S HP Education Services course data sheet Advanced Solutions of Microsoft SharePoint Server 2013 (20332) H6C76S Course Description In this class, you will learn how to design, configure, and manage a SharePoint

More information

Install BA Server with Your Own BA Repository

Install BA Server with Your Own BA Repository Install BA Server with Your Own BA Repository This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright 2014

More information

Synchronizing ProCurve IDM and Windows Active Directory

Synchronizing ProCurve IDM and Windows Active Directory An HP ProCurve Networking Application Note Synchronizing ProCurve IDM and Windows Active Directory Contents 1. Introduction... 2 2. Prerequisites... 2 3. Network and Active Directory tree diagrams... 2

More information

Server Virtualization with Windows Server Hyper-V and System Center (20409) H8B93S

Server Virtualization with Windows Server Hyper-V and System Center (20409) H8B93S HP Education Services course data sheet Server Virtualization with Windows Server Hyper-V and System Center (20409) H8B93S Course Overview Obtain the skills you need to deploy and manage a Microsoft Server

More information

HP Thin Client Imaging Tool

HP Thin Client Imaging Tool HP Thin Client Imaging Tool Table of Contents: Abstract... 1 Introduction... 1 System Requirements... 1 Software... 1 Hardware... 1 Getting Started... 2 Formatting a USB Flash Device... 3 Unpacking the

More information

HP BladeSystem Management Pack version 1.0 for Microsoft System Center Essentials Troubleshooting Assistant

HP BladeSystem Management Pack version 1.0 for Microsoft System Center Essentials Troubleshooting Assistant HP BladeSystem Management Pack version 1.0 for Microsoft System Center Essentials Troubleshooting Assistant Part Number 465399-001 November 2007 (First Edition) Copyright 2007 Hewlett-Packard Development

More information

HP Device Manager 4.6

HP Device Manager 4.6 Technical white paper HP Device Manager 4.6 FTP Server Configuration Table of contents Overview... 2 IIS FTP server configuration... 2 Installing FTP v7.5 for IIS... 2 Creating an FTP site with basic authentication...

More information

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database

HP Vertica Integration with SAP Business Objects: Tips and Techniques. HP Vertica Analytic Database HP Vertica Integration with SAP Business Objects: Tips and Techniques HP Vertica Analytic Database HP Big Data Document Release Date: June 23, 2015 Legal Notices Warranty The only warranties for HP products

More information

QuickSpecs. HP Device Manager

QuickSpecs. HP Device Manager OVERVIEW is enterprise-class thin client management software that allows customers to view their thin client assets remotely and to manipulate those thin clients to meet the required business need. To

More information

HP Web Jetadmin Database Connector Plug-in reference manual

HP Web Jetadmin Database Connector Plug-in reference manual HP Web Jetadmin Database Connector Plug-in reference manual Copyright notice 2004 Copyright Hewlett-Packard Development Company, L.P. Reproduction, adaptation or translation without prior written permission

More information

Acronis SharePoint Explorer. User Guide

Acronis SharePoint Explorer. User Guide Acronis SharePoint Explorer User Guide Table of contents 1 Introducing Acronis SharePoint Explorer... 3 1.1 Supported Microsoft SharePoint versions... 3 1.2 Supported backup locations... 3 1.3 Licensing...

More information

Veritas Operations Manager Release Notes. 3.0 Rolling Patch 1

Veritas Operations Manager Release Notes. 3.0 Rolling Patch 1 Veritas Operations Manager Release Notes 3.0 Rolling Patch 1 Veritas Operations Manager Release Notes The software described in this book is furnished under a license agreement and may be used only in

More information

HP ProtectTools Embedded Security Guide

HP ProtectTools Embedded Security Guide HP ProtectTools Embedded Security Guide Document Part Number: 364876-001 May 2004 This guide provides instructions for using the software that allows you to configure settings for the HP ProtectTools Embedded

More information

Event Monitoring Service Version A.04.20.31 Release Notes

Event Monitoring Service Version A.04.20.31 Release Notes Event Monitoring Service Version A.04.20.31 Release Notes HP-UX 11i v3 September 2007 Manufacturing Part Number: B7609-90051 September 2007 Copyright 2007 Hewlett-Packard Development Company, L.P. Legal

More information

HP Device Manager 4.7

HP Device Manager 4.7 Technical white paper HP Device Manager 4.7 FTPS Certificates Configuration Table of contents Overview... 2 Server certificate... 2 Configuring a server certificate on an IIS FTPS server... 2 Creating

More information

Sybase ASE Linux Installation Guide Installation and getting started guide for SAP Sybase ASE on Linux

Sybase ASE Linux Installation Guide Installation and getting started guide for SAP Sybase ASE on Linux Sybase ASE Linux Installation Guide Installation and getting started guide for SAP Sybase ASE on Linux www.sap.com TABLE OF CONTENTS INSTALLING ADAPTIVE SERVER... 3 Installing Adaptive Server with the

More information

HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide

HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide HP ProLiant Essentials Vulnerability and Patch Management Pack Planning Guide Product overview... 3 Vulnerability scanning components... 3 Vulnerability fix and patch components... 3 Checklist... 4 Pre-installation

More information

Software Update, Backup, and Recovery

Software Update, Backup, and Recovery Software Update, Backup, and Recovery User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. Windows is a U.S. registered trademark of Microsoft Corporation. The information contained herein

More information

HP Software as a Service

HP Software as a Service HP Software as a Service Software Version: 6.1 Federated SSO Document Release Date: August 2013 Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty

More information

HP IMC Firewall Manager

HP IMC Firewall Manager HP IMC Firewall Manager Configuration Guide Part number: 5998-2267 Document version: 6PW102-20120420 Legal and notice information Copyright 2012 Hewlett-Packard Development Company, L.P. No part of this

More information

Installing a Symantec Backup Exec Agent on a SnapScale Cluster X2 Node or SnapServer DX1 or DX2. Summary

Installing a Symantec Backup Exec Agent on a SnapScale Cluster X2 Node or SnapServer DX1 or DX2. Summary Technical Bulletin Application Note April 2013 Installing a Symantec Backup Exec Agent on a SnapScale Cluster X2 Node or SnapServer DX1 or DX2 Summary This application note describes how to install the

More information

HP Online ROM Flash. User Guide

HP Online ROM Flash. User Guide HP Online ROM Flash User Guide Part number: 216315-010 Tenth edition: March 2006 Legal notices Copyright 2000, 2006 Hewlett-Packard Development Company, L.P. The information contained herein is subject

More information

BrightStor ARCserve Backup for Linux

BrightStor ARCserve Backup for Linux BrightStor ARCserve Backup for Linux Agent for MySQL Guide r11.5 D01213-2E This documentation and related computer software program (hereinafter referred to as the "Documentation") is for the end user's

More information

HP 3PAR Recovery Manager 4.5.0 Software for Microsoft Exchange Server 2007, 2010, and 2013

HP 3PAR Recovery Manager 4.5.0 Software for Microsoft Exchange Server 2007, 2010, and 2013 HP 3PAR Recovery Manager 4.5.0 Software for Microsoft Exchange Server 2007, 2010, and 2013 Release Notes Abstract This release notes document is for HP 3PAR Recovery Manager 4.5.0 Software for Microsoft

More information

Security Overview of the Integrity Virtual Machines Architecture

Security Overview of the Integrity Virtual Machines Architecture Security Overview of the Integrity Virtual Machines Architecture Introduction... 2 Integrity Virtual Machines Architecture... 2 Virtual Machine Host System... 2 Virtual Machine Control... 2 Scheduling

More information

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Excel Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Excel Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

HP Data Replication Solution Service for 3PAR Virtual Copy

HP Data Replication Solution Service for 3PAR Virtual Copy HP Data Replication Solution Service for 3PAR Virtual Copy HP Care Pack Services Technical data HP Data Replication Solution Service for 3PAR Virtual Copy provides implementation of the HP 3PAR Storage

More information

2 Installing Privileged User Manager 2.3

2 Installing Privileged User Manager 2.3 NetIQ Privileged User Manager 2.3.2 Release Notes January, 2013 1 Documentation The following sources provide information about Privileged User Manager: Privileged User Manager 2.3 Documentation Site (http://www.novell.com/documentation/

More information

Send to Network Folder. Embedded Digital Sending

Send to Network Folder. Embedded Digital Sending Send to Network Folder Embedded Digital Sending Embedded Digital Sending Legal Notice Copyright 2005 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without

More information

HP Business Service Management

HP Business Service Management HP Business Service Management For the Windows and Linux operating systems Software Version: 9.23 High Availability Fine Tuning - Best Practices Document Release Date: December 2013 Software Release Date:

More information

Cisco Prime Central Managing Certificates

Cisco Prime Central Managing Certificates Cisco Prime Central Managing Certificates Version 1.0.5 September, 2015 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000

More information

Backup Strategies for Integrity Virtual Machines

Backup Strategies for Integrity Virtual Machines Backup Strategies for Integrity Virtual Machines Introduction...2 Basic Aspects of Data Protection for Virtual Environments...2 Backup and Recovery from the VM Host System...3 Backup and Recovery of Individual

More information

Crystal Server Upgrade Guide SAP Crystal Server 2013

Crystal Server Upgrade Guide SAP Crystal Server 2013 Crystal Server Upgrade Guide SAP Crystal Server 2013 Copyright 2013 SAP AG or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or

More information

HP POLYSERVE SOFTWARE

HP POLYSERVE SOFTWARE You can read the recommendations in the user guide, the technical guide or the installation guide for HP POLYSERVE SOFTWARE. You'll find the answers to all your questions on the HP POLYSERVE SOFTWARE in

More information

HP Systems Insight Manager 7.0 and HP Agentless Management overview

HP Systems Insight Manager 7.0 and HP Agentless Management overview HP Systems Insight Manager 7.0 and HP Agentless Management overview Technology brief Introduction... 2 Overview of HP Agentless Management... 2 Using traditional OS-based management software... 4 Using

More information

HP Device Monitor (v 1.2) for Microsoft System Center User Guide

HP Device Monitor (v 1.2) for Microsoft System Center User Guide HP Device Monitor (v 1.2) for Microsoft System Center User Guide Abstract This guide provides information on using the HP Device Monitor version 1.2 to monitor hardware components in an HP Insight Control

More information

AlphaServer Management Station

AlphaServer Management Station AlphaServer Management Station Installation Instructions for HP Tru64 UNIX Systems August 2006 Product Version: AlphaServer Management Station Version 5.2 This document describes how to install the AlphaServer

More information

CA ARCserve Backup for Windows

CA ARCserve Backup for Windows CA ARCserve Backup for Windows Agent for Sybase Guide r16 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation

More information

System Fault Management Administrator s Guide

System Fault Management Administrator s Guide System Fault Management Administrator s Guide HP-UX 11i v2 Edition 3 Manufacturing Part Number: 5991-5899 E0609 Copyright 2006 Hewlett-Packard Development Company, L.P. Legal Notices The information in

More information

HP Data Protector Integration with Autonomy IDOL Server

HP Data Protector Integration with Autonomy IDOL Server HP Data Protector Integration with Autonomy IDOL Server Introducing e-discovery for HP Data Protector environments Technical white paper Table of contents Summary... 2 Introduction... 2 Integration concepts...

More information

Net/FSE Installation Guide v1.0.1, 1/21/2008

Net/FSE Installation Guide v1.0.1, 1/21/2008 1 Net/FSE Installation Guide v1.0.1, 1/21/2008 About This Gu i de This guide walks you through the installation of Net/FSE, the network forensic search engine. All support questions not answered in this

More information

HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos)

HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos) HP Point of Sale (POS) Peripherals Configuration Guide ap5000 VFD Windows (non-opos) Document Version 3.23 November 2010 1 Copyright 2007-2010 Hewlett-Packard Development Company, L.P. The information

More information

Managing Servers in the Enterprise

Managing Servers in the Enterprise Managing Servers in the Enterprise Ed Cox Trainer Hewlett-Packard 2004 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice Objectives Install

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Application Notes Oracle Backup Recovery Setup on LeftHand Networks IP SAN Legal Notices Warranty The only warranties for HP products and services are set forth

More information

RAID 1(+0): breaking mirrors and rebuilding drives

RAID 1(+0): breaking mirrors and rebuilding drives RAID 1(+0): breaking mirrors and rebuilding drives How to, 3 rd edition Introduction... 2 Splitting a mirrored array using the Array Configuration Utility... 3 Recombining a split mirrored array using

More information