Using the vgmove command to perform LVM Volume Group migration

Size: px
Start display at page:

Download "Using the vgmove command to perform LVM Volume Group migration"

Transcription

1 Using the vgmove command to perform LVM Volume Group migration Abstract... 2 Overview... 2 When do you use vgmove?... 2 Prerequisites... 2 How to use vgmove... 2 Volume group migration flow... 3 How to recover from failures... 4 Examples... 4 Migrating a volume group (vg01) that has a single disk... 4 Migrating volume group (vg01) having multiple disks and mirrored volumes... 6 LVM vgmove Messages... 8 For more information... 9 Call to action... 10

2 Abstract This white paper describes the data mobility enhancements in LVM. You can now move LVM data from an existing set of disks or DSFs to a new set of disks or DSFs without any application downtime. In addition, you can move the data within or across storage frames. This paper is intended for system administrators or operators who have experience with both HP-UX and LVM. The HP-UX 11i v3 September 2009 Update provides a new command, vgmove, for volume group mobility. The vgmove command supports migration of Version 1.0 and 2.x volume groups. This paper explains how to use the vgmove command to perform the volume group migration. Overview The vgmove command enables you to migrate data from an existing set of disks in a volume group to a new set of disks. You can perform volume group migration online only. The vgmove command is supported for both Version 1.0 and 2.0 volume groups in standalone and exclusive mode only. For Version 2.1 and greater volume groups, you can perform vgmove when a volume group is activated in shared, exclusive, or standalone mode. The volume group migration occurs with the data in place. Prior to the vgmove command, LVM supported moving of physical volumes within a volume group, but you needed to perform many configuration steps. When do you use vgmove? To migrate the volume group from one set of disks to another set of disks. When the boot disk volume group runs out of disk space for the root volume. To migrate data from a smaller storage device to a larger storage device Prerequisites Before migrating a volume group, you must meet the following prerequisites: The volume group must be activated during migration. The volume group must be not be quieseced (both write mode and read-write mode with or without timeout set). Do not activate the volume group in read-only mode. All physical volumes belonging to the volume group must be accessible. How to use vgmove 1. Take a configuration backup of the volume group using vgcfgbackup -f, as a precautionary measure. You can use this to recover the initial or original volume group configuration, if ncessary. Save this configuration backup file in a known location, other than the default location; otherwise, it might be overwritten by a configuration change done later. 2. Prepare the diskmap file to be used for volume group migration. The diskmap file specifies the list of source disks from which to move data and the list of destinations disks to which to move data. You have the option to list only a subset of the existing physical volumes in the volume group that needs to be migrated to new disks. The format of the diskmap file is as follows: source_pv_1 destination_pv_1_1 destination_pv_1_2... source_pv_2 destination_pv_2_1 destination_pv_2_2... 2

3 ... source_pv_n destination_pv_n_1 destination_pv_n_2... You can generate the diskmap file manually or automatically as follows: o Manually To move data in volume group /dev/vg01 from /dev/disk/disk100 to /dev/disk/disk101, enter: #echo /dev/disk/disk100 /dev/disk/disk101 > diskmap.txt o Automatically To move data in a volume group /dev/vg01 from /dev/disk/disk100 to /dev/disk/disk101, add the new disks to a file as follows: #echo /dev/disk/disk101 > newdisk.txt Then, generate the diskmap file as follows: #vgmove i newdisk.txt f diskmap.txt /dev/vg01 The preceding examples show only one disk. You can generate a diskmap file with multiple disks. 3. Preview the migration operation to check whether the migration can finish successfully. #vgmove p f diskmap.txt /dev/vg01 4. Make sure that all the prerequisites are met. The vgmove command reports failures if any of the prerequisites are not met. 5. Make sure that all the destination physical volumes have enough space to accommodate the source logical volumes. Note that vgmove command internally checks and fails if there is not enough space. 6. After the command completes in preview mode, execute the actual command as follows: #vgmove f diskmap.txt /dev/vg01 Volume group migration flow The following steps describe the flow of the volume group migration. The flow helps you to take necessary action in case of any unexpected failures. 1. The vgmove command checks for the availability of the source and destination disks. When it is successful, vgmove command invokes pvcreate internally. Then, it adds (using vgextend) the destination disk to the volume group, if its not already a part of the volume group. 2. After extending the volume, vgmove transfers all the logical volumes from the source disks to the destination disks using the pvmove command. While transferring the logical volumes, the vgmove command honors the allocation and mirroring policies of the extents being moved. 3. When vgmove is invoked with the preview option, the following line appears if it is successful. The diskmap.txt file has /dev/disk/disk107 and /dev/disk/disk112: # vgmove -p -f /tmp/diskmap.txt /dev/vg01 The vgmove command can be successfully run. 4. When the actual command is run following is output: # vgmove -f /tmp/diskmap.txt /dev/vg01 Physical volume "/dev/rdisk/disk112" has been successfully created. Transferring logical extents of logical volume "/dev/vg01/lvol1"... Transferring logical extents of logical volume "/dev/vg01/lvol2"... Transferring logical extents of logical volume "/dev/vg01/lvol4"... Physical volume "/dev/disk/disk107" has been successfully moved. The vgmove command completed successfully. 3

4 5. After successful migration, the destination disks are added to the /etc/lvmtab or /etc/lvmtab_p LVM configuration files. The source disks and their alternate links are removed from the LVM configuration files and the volume group. How to recover from failures When the vgmove command is interrupted manually or the system is rebooted during the volume group migration, data is not lost as long as the physical volume is. To complete the volume group migration process, invoke the vgmove command again with same syntax and arguments. After successful migration, the entries for source disks and its alternate links are removed from the LVM configuration files (/etc/lvmtab or /etc/lvmtab_p). Examples The following examples assume the volume group is activated. The vgmove command fails when run on a deactivated volume group. Migrating a volume group (vg01) that has a single disk 1. Display the configuration before the migration as follows: # vgdisplay -v /dev/vg Volume groups --- VG Name /dev/vg01 VG Write Access read/write VG Status Max LV 255 Cur LV 3 Open LV 3 Max PV 16 Cur PV 1 Act PV 1 Max PE per PV 1016 VGDA 2 PE Size (Mbytes) 32 Alloc PE 60 Total PVG 0 Total Spare PVs 0 Total Spare PVs in use 0 VG Version 1.0 VG Max Size 508g VG Max Extents Logical volumes LV Name /dev/vg01/lvol1... /syncd...lv Size (Mbytes) Allocated PE 20...Used PV 1...LV Name /dev/vg01/lvol2... /syncd...lv Size (Mbytes) Allocated PE 20...Used PV 1...LV Name /dev/vg01/lvol3... /syncd...lv Size (Mbytes) 640 4

5 ......Allocated PE 20...Used PV Physical volumes PV Name /dev/disk/disk116...pv Status Generate the diskmap file using vgmove command. 3. Add the destination disk as follows: # echo "/dev/disk/disk117" > newdisk.txt 4. Run the vgmove command with following options to autogenerate the map file: # vgmove -i /tmp/newdisk.txt -f /tmp/diskmap.txt /dev/vg01 The map file is created as follows: # cat /tmp/diskmap.txt /dev/disk/disk116 /dev/disk/disk Run the vgmove command in preview mode as follows: # vgmove -p -f /tmp/diskmap.txt /dev/vg01 The vgmove command can be successfully run. 6. Perform the actual migration after the preview mode is successful as follows: Transferring logical extents of logical volume "/dev/vg01/lvol1"... Transferring logical extents of logical volume "/dev/vg01/lvol2"... Physical volume "/dev/dsk/c5t1d1" has been successfully moved. The vgmove command completed successfully. 7. Display the configuration after the migration as follows: # vgdisplay -v /dev/vg Volume groups --- VG Name VG Write Access VG Status Max LV 255 Cur LV 3 Open LV 3 Max PV 16 Cur PV 1 Act PV 1 Max PE per PV 1016 VGDA 2 PE Size (Mbytes) 32 Alloc PE 60 Total PVG 0 Total Spare PVs 0 Total Spare PVs in use 0 VG Version 1.0 /dev/vg01 read/write VG Max Size 508g VG Max Extents Logical volumes --- LV Name /dev/vg01/lvol1 /syncd 5

6 LV Size (Mbytes) 640 Allocated PE 20 Used PV 1 LV Name /dev/vg01/lvol2 /syncd LV Size (Mbytes) 640 Allocated PE 20 Used PV 1 LV Name /dev/vg01/lvol3 /syncd LV Size (Mbytes) 640 Allocated PE 20 Used PV Physical volumes --- PV Name /dev/disk/disk117 PV Status Migrating volume group (vg01) having multiple disks and mirrored volumes 1. Display the configuration before the migration as follows: # vgdisplay -v /dev/vg Volume groups --- VG Name VG Write Access /dev/vg01 read/write VG Status Max LV 2047 Cur LV 3 Open LV 3 Max PV 2048 Cur PV 4 Act PV 4 Max PE per PV VGDA 8 PE Size (Mbytes) 32 Total PE 252 Alloc PE 180 Free PE 72 Total PVG 0 Total Spare PVs 0 Total Spare PVs in use 0 VG Version 2.1 VG Max Size 508g VG Max Extents Logical volumes --- LV Name /dev/vg01/lvol1 /syncd LV Size (Mbytes) 640 Allocated PE 40 Used PV 2 6

7 LV Name /dev/vg01/lvol2 /syncd LV Size (Mbytes) 640 Allocated PE 60 Used PV 3 LV Name /dev/vg01/lvol3 /syncd LV Size (Mbytes) 640 Allocated PE 80 Used PV Physical volumes --- PV Name /dev/disk/disk117 PV Status PV Name /dev/disk/disk116 PV Status PV Name /dev/disk/disk118 PV Status Free PE 23 PV Name /dev/disk/disk119 PV Status Free PE 43 The volume group has 4 disks and 3 logical volumes with 1, 2, 3 mirrors. 2. Generate the disk map file using the four destination disks as follows: # echo "/dev/disk/disk120" > /tmp/newdisk.txt # echo "/dev/disk/disk121" >> /tmp/newdisk.txt # echo "/dev/disk/disk122" >> /tmp/newdisk.txt # echo "/dev/disk/disk123" >> /tmp/newdisk.txt # vgmove -i /tmp/newdisk.txt -f /tmp/diskmap.txt /dev/vg01 3. Verify the diskmap.txt file as follows: # cat /tmp/diskmap.txt /dev/disk/disk117 /dev/disk/disk120 /dev/disk/disk116 /dev/disk/disk121 /dev/disk/disk118 /dev/disk/disk122 /dev/disk/disk119 /dev/disk/disk Run the vgmove command in preview mode as follows: # vgmove -p -f /tmp/diskmap.txt /dev/vg01 The vgmove command can be successfully run. 5. Perform the actual migration as follows: 7

8 # vgmove -f /tmp/diskmap.txt /dev/vg01 Physical volume "/dev/rdisk/disk120" has been successfully created. Transferring logical extents of logical volume "/dev/vg01/lvol1"... Transferring logical extents of logical volume "/dev/vg01/lvol2"... Physical volume "/dev/disk/disk117" has been successfully moved. Physical volume "/dev/rdisk/disk121" has been successfully created. Transferring logical extents of logical volume "/dev/vg01/lvol1"... Transferring logical extents of logical volume "/dev/vg01/lvol2"... Physical volume "/dev/disk/disk116" has been successfully moved. Physical volume "/dev/rdisk/disk122" has been successfully created. Transferring logical extents of logical volume "/dev/vg01/lvol2"... Physical volume "/dev/disk/disk118" has been successfully moved. Physical volume "/dev/rdisk/disk123" has been successfully created. Physical volume "/dev/disk/disk119" has been successfully moved. The vgmove command completed successfully. LVM vgmove Messages While using the vgmove command you might see status messages similar to the following: The vgmove command can be successfully run. The vgmove command was invoked in preview mode and was successful. The vgmove command completed successfully. The vgmove command sucessfully completed the volume group migration. Physical volume "/dev/rdisk/disk137" has been successfully created. When vgmove is run, it internally invokes the pvcreate command on the destination disk to create the phyiscal volume for use in the LVM volume group. If the destination disk is already part of volume group, this message is skipped. After successful creation of the phyiscal volume, vgmove internally extends the migrating volume group. If the destination disk is already part of volume group, this message is skipped. Transferring logical extents of logical volume "/dev/vg00/lvol1" The vgmove comman internally invokes the pvmove command to transfer the logical extents of a logical volume. The vgmove command migrated all the logical volumes from a source disk and invoked the vgreduce command to remove the source disk entry from the volume group. Physical volume «/dev/rdisk/disk132» is not a block special file. The diskfile or diskmap file has a character device entry. 8

9 Operation on volume group "/dev/vg01" could not succeed as physical volume "/dev/disk/disk132" cannot be accessed. If the physical volume is detached, use pvchange(1m) or vgchange(1m) to re-attach before this operation. When the source or destination disks are not, vgmove fails. Cannot move physical volume /dev/disk/disk132. Failure possibly caused by strict allocation policy. The vgmove command failed. This message is displayed when vgmove fails to migrate the volume group. This might be because the volume group has mirrored volumes and it cannot be accomadated in the destination disks. Or there are logical volumes with a strict allocation policy on source disk and the destination disks cannot honor that policy. Physical volume "/dev/disk/disk85" does not belong to volume group "/dev/vg01". The source disk does not belong to the volume group being migrated. The volume group "/dev/vg01" is not active. ly an active volume group can be extended. The volume group is in a deactivated state. A volume group must be activated to perform volume group migration. The volume group "/dev/vg01" is active in Shared Mode. Cannot perform configuration change. The vgmove command was invoked on a Version 1.0 or 2.0 shared volume groups. The vgmove command is supported on Version 2.1 or above shared volume groups. Destination disks do not contain enough space. vgmove: The vgmove command failed. The destination disk does not have enough space to migrate all the logical volumes in a source disk. You must increase the destination disk size. At least one destination physical volume must be specified. No destination disk was specified in the diskmap file. For more information To learn more about LVM and HP-UX system administration, see the following documents on the HP documentation website ( HP-UX System Administrator s Guide: Logical Volume Configuration LVM White Papers: Using the vgmodify command to perform LVM Volume Group Dynamic LUN Expansion (DLE) and Contraction (DLC) LVM Supported Limits LVM Migration from Legacy to Agile Naming Model 9

10 LVM New Features in HP-UX 11i v3 LVM line Disk Replacement (LVM OLR) LVM Volume Group Quiesce/Resume SLVM Single-Node line Reconfiguration (SLVM SNOR) When Good Disks Go Bad: Dealing with Disk Failures under LVM Using the vgversion Command to Perform LVM Volume Group Version Migration Call to action HP welcomes your input. Please give us comments about this white paper, or suggestions for LVM or related documentation, through our technical documentation feedback website: 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. Itanium is a trademark or registered trademark of Intel Corporation or its subsidiaries in the United States and other countries. 4AA0-XXXXENW, September

LVM Migration from Legacy to Agile Naming Model HP-UX 11i v3

LVM Migration from Legacy to Agile Naming Model HP-UX 11i v3 LVM Migration from Legacy to Agile Naming Model HP-UX 11i v3 Abstract...2 Legacy and Agile Naming Models...3 LVM support for Dual Naming Models...3 Naming Model specific Commands/Options...3 Disabling

More information

Commands LVM information can be created, displayed, and manipulated with the following commands:

Commands LVM information can be created, displayed, and manipulated with the following commands: NAME lvm - Logical Volume Manager (LVM) DESCRIPTION The Logical Volume Manager (LVM) is a subsystem for managing disk space. The HP LVM subsystem offers value-added features, such as mirroring (with the

More information

HP-UX System Administrator's Guide: Logical Volume Management

HP-UX System Administrator's Guide: Logical Volume Management HP-UX System Administrator's Guide: Logical Volume Management HP-UX 11i Version 3 Abstract This document describes how to configure, administer, and troubleshoot the Logical Volume Manager (LVM) product

More information

pv_path The block device path name of a physical volume.

pv_path The block device path name of a physical volume. NAME pvdisplay - display information about physical volumes in LVM volume groups SYNOPSIS /usr/sbin/pvdisplay [-v] [-d] [-b BlockList ] pv_path... /usr/sbin/pvdisplay -l [-u] pv_path... /usr/sbin/pvdisplay

More information

Before assigning a physical volume to a volume group, the physical volume has to be created using the pvcreate command (see pvcreate (1M)).

Before assigning a physical volume to a volume group, the physical volume has to be created using the pvcreate command (see pvcreate (1M)). NAME vgcreate - create LVM volume group SYNOPSIS /usr/sbin/vgcreate [-V 1.0] [-f] [-A autobackup ] [-x extensibility] [-e max_pe] [-l max_lv] [-p max_pv] [-s pe_size ] [-g pvg_name ] vg_name pv_path...

More information

Enabling High Availability for SOA Manager

Enabling High Availability for SOA Manager Enabling High Availability for SOA Manager Abstract... 2 Audience... 2 Introduction... 2 Prerequisites... 3 OS/Platform... 3 Cluster software... 4 Single SOA Manager Server Fail Over... 4 Setting up SOA

More information

HP D6000 Disk Enclosure Direct Connect Cabling Guide

HP D6000 Disk Enclosure Direct Connect Cabling Guide HP D6000 Disk Enclosure Direct Connect Cabling Guide Abstract This document provides cabling examples for when an HP D6000 Disk Enclosure is connected directly to a server. Part Number: 682251-001 September

More information

HP StorageWorks Modular Smart Array 1500 cs application note

HP StorageWorks Modular Smart Array 1500 cs application note HP StorageWorks Modular Smart Array 1500 cs application note Migrating to active/active controllers in HP-UX environments *400677-001* *400677 001* Part number: 400677 001 First edition: September 2005

More information

The Contents and Structure of this Manual. This document is composed of the following 12 chapters.

The Contents and Structure of this Manual. This document is composed of the following 12 chapters. Preface This document briefly explains the operations that need to be performed by the user in order to connect an ETERNUS2000 model 100 or 200, ETERNUS4000 model 300, 400, 500, or 600, or ETERNUS8000

More information

Using Dynamic Root Disk Activate and Deactivate Commands

Using Dynamic Root Disk Activate and Deactivate Commands Using Dynamic Root Disk Activate and Deactivate Commands Introduction... 2 Using a preview of drd activate to check boot settings... 2 Using a drd clone as an alternate boot disk... 3 On an Integrity System...

More information

Marvell BIOS Utility User Guide

Marvell BIOS Utility User Guide Marvell BIOS Utility User Guide for HPE MicroServer Gen10 Abstract This user guide provides information on how to use the embedded Marvell BIOS Utility to create and manage RAID virtual disks and arrays.

More information

HP 3PAR OS MU1 Patch 11

HP 3PAR OS MU1 Patch 11 HP 3PAR OS 313 MU1 Patch 11 Release Notes This release notes document is for Patch 11 and intended for HP 3PAR Operating System Software HP Part Number: QL226-98041 Published: December 2014 Edition: 1

More information

HP ProLiant DL580 Generation 2 and HP ProLiant ML570 Generation 2 Server Hot-Add Memory. July 2003 (Second Edition) Part Number

HP ProLiant DL580 Generation 2 and HP ProLiant ML570 Generation 2 Server Hot-Add Memory. July 2003 (Second Edition) Part Number HP ProLiant DL580 Generation 2 and HP ProLiant ML570 Generation 2 Server Hot-Add Memory July 2003 (Second Edition) Part Number 325398-002 2003 Hewlett-Packard Development Company, L.P. Microsoft and Windows

More information

HPE 3PAR OS MU5 Patch 49 Release Notes

HPE 3PAR OS MU5 Patch 49 Release Notes HPE 3PAR OS 3.2.1 MU5 Patch 49 Release Notes This release notes document is for Patch 49 and intended for HPE 3PAR Operating System Software + P39. Part Number: QL226-99362a Published: October 2016 Edition:

More information

HP Disk File Optimizer for OpenVMS Release Notes

HP Disk File Optimizer for OpenVMS Release Notes HP Disk File Optimizer for OpenVMS Release Notes April 2012 This release notes describe corrected problems, known restrictions, and errors found in the HP Disk File Optimizer software and documentation,

More information

The Contents and Structure of this Manual. This document is composed of the following ten chapters.

The Contents and Structure of this Manual. This document is composed of the following ten chapters. Preface This document briefly explains the operations that need to be performed by the user in order to connect an ETERNUS2000 model 100 or 200, ETERNUS4000 model 300, 400, 500, or 600, or ETERNUS8000

More information

HP 3PAR OS MU3 Patch 17

HP 3PAR OS MU3 Patch 17 HP 3PAR OS 3.2.1 MU3 Patch 17 Release Notes This release notes document is for Patch 17 and intended for HP 3PAR Operating System Software. HP Part Number: QL226-98310 Published: July 2015 Edition: 1 Copyright

More information

HPE 3PAR OS MU3 Patch 24 Release Notes

HPE 3PAR OS MU3 Patch 24 Release Notes HPE 3PAR OS 3.1.3 MU3 Patch 24 Release Notes This release notes document is for Patch 24 and intended for HPE 3PAR Operating System Software + P19. Part Number: QL226-99298 Published: August 2016 Edition:

More information

DtS Data Migration to the MSA1000

DtS Data Migration to the MSA1000 White Paper September 2002 Document Number Prepared by: Network Storage Solutions Hewlett Packard Company Contents Migrating Data from Smart Array controllers and RA4100 controllers...3 Installation Notes

More information

HP 3PAR OS MU3 Patch 18 Release Notes

HP 3PAR OS MU3 Patch 18 Release Notes HP 3PAR OS 3.2.1 MU3 Patch 18 Release Notes This release notes document is for Patch 18 and intended for HP 3PAR Operating System Software 3.2.1.292 (MU3). HP Part Number: QL226-98326 Published: August

More information

HP ALM Client MSI Generator

HP ALM Client MSI Generator HP ALM Client MSI Generator Software Version: 1.00 User Guide Document Release Date: October 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties for HP products and services

More information

Designing high-availability solutions using HP Integrity Virtual Machines as HP Serviceguard packages

Designing high-availability solutions using HP Integrity Virtual Machines as HP Serviceguard packages Designing high-availability solutions using HP Integrity Virtual Machines as HP Serviceguard packages August 2006 Executive summary... 2 HP Integrity VM overview... 2 HP Integrity VM feature summary...

More information

Configuring RAID with HP Z Turbo Drives

Configuring RAID with HP Z Turbo Drives Technical white paper Configuring RAID with HP Z Turbo Drives HP Workstations This document describes how to set up RAID on your HP Z Workstation, and the advantages of using a RAID configuration with

More information

Smart Array Controller technology: drive array expansion and extension technology brief

Smart Array Controller technology: drive array expansion and extension technology brief Smart Array Controller technology: drive array expansion and extension technology brief Abstract... 2 Introduction... 2 Array configuration utility... 2 Capacity expansion... 2 Logical drive creation...

More information

External Devices. User Guide

External Devices. User Guide External Devices User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

Supported File and File System Sizes for HFS and JFS

Supported File and File System Sizes for HFS and JFS Supported File and File System Sizes for HFS and JFS Executive Summary... 2 Hierarchical File System (HFS) Supported Sizes... 2 JFS (VxFS) Supported Sizes... 3 Large File System (> 2 TB) Compatibility

More information

HP Storage Mirroring Application Manager 4.1 for Exchange white paper

HP Storage Mirroring Application Manager 4.1 for Exchange white paper HP Storage Mirroring Application Manager 4.1 for Exchange white paper Introduction... 2 Product description... 2 Features... 2 Server auto-discovery... 2 (NEW) Cluster configuration support... 2 Integrated

More information

version on HP-UX 11i v3 March 2014 Operating Environment Updat e Release

version on HP-UX 11i v3 March 2014 Operating Environment Updat e Release Technical white paper Installation of non-def ault VxFS and VxVM soft ware version on HP-UX 11i v3 March 2014 Operating Environment Updat e Release Table of contents Introduction... 3 Installation Instructions...

More information

External Devices User Guide

External Devices User Guide External Devices User Guide Copyright 2008 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

HP Data Protector A disaster recovery support for Microsoft Windows 7 and Windows Server 2008 R2

HP Data Protector A disaster recovery support for Microsoft Windows 7 and Windows Server 2008 R2 HP Data Protector A.06.11 disaster recovery support for Microsoft Windows 7 and Windows Server 2008 R2 Technical white paper Table of contents Introduction... 2 Installation... 2 Preparing for Disaster

More information

WLAN high availability

WLAN high availability Technical white paper WLAN high availability Table of contents Overview... 2 WLAN high availability implementation... 3 Fundamental high availability technologies... 3 AP connection priority... 3 AC selection...

More information

HP OpenView Storage Data Protector A.05.10

HP OpenView Storage Data Protector A.05.10 HP OpenView Storage Data Protector A.05.10 ZDB for HP StorageWorks Enterprise Virtual Array (EVA) in the CA Configuration White Paper Edition: August 2004 Manufacturing Part Number: n/a August 2004 Copyright

More information

HP Data Protector Integration with Autonomy IDOL Server

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

More information

RAID-01 (ciss) B Mass Storage Driver Release Notes

RAID-01 (ciss) B Mass Storage Driver Release Notes RAID-01 (ciss) B.11.31.1705 Mass Storage Driver Release Notes HP-UX 11i v3 Abstract This document contains specific information that is intended for users of this HPE product. Part Number: Published:

More information

HPE 3PAR OS MU2 Patch 36 Release Notes

HPE 3PAR OS MU2 Patch 36 Release Notes HPE 3PAR OS 321 MU2 Patch 36 Release Notes This release notes document is for Patch 36 and intended for HPE 3PAR Operating System Software 321200 (MU2)+P13 Part Number: QL226-99149 Published: May 2016

More information

External Devices User Guide

External Devices User Guide External Devices User Guide Copyright 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

Ramdisk (Memory-based Disk) Support on HP-UX 11i v2

Ramdisk (Memory-based Disk) Support on HP-UX 11i v2 Ramdisk (Memory-based Disk) Support on HP-UX 11i v2 Introduction... 2 Terms and Definitions... 2 Ramdisk Features in HP-UX 11i v2... 2 Ramdisk Installation... 3 Ramdisk Configuration... 3 Ramdisk Device

More information

HP OpenVMS Operations Manager HTTPS Agents Version 8.6 Configuration Guide

HP OpenVMS Operations Manager HTTPS Agents Version 8.6 Configuration Guide HP OpenVMS Operations Manager HTTPS Agents Version 8.6 Configuration Guide Copyright 2010 Hewlett-Packard Development Company, L.P. Confidential computer software. Valid license from HP required for possession,

More information

HP Data Protector A support for Microsoft Exchange Server 2010

HP Data Protector A support for Microsoft Exchange Server 2010 HP Data Protector A.06.11 support for Microsoft Exchange Server 2010 White paper Introduction... 2 Microsoft Exchange Server 2010 concepts... 2 Microsoft Volume Shadow Copy Service integration... 2 Installation

More information

Sales Certifications

Sales Certifications Sales Certifications Accredited Sales Professional HP Imaging & Printing Prerequisites Web-based Trainings Courses and Step 1 or or or or or Digital Workplace Sales DWS-SALES 1 Day Total Print Management

More information

Internal Cabling Guide for the HP Smart Array 6400 Series Controller on an HP Integrity Server rx7620

Internal Cabling Guide for the HP Smart Array 6400 Series Controller on an HP Integrity Server rx7620 Internal Cabling Guide for the HP Smart Array 6400 Series Controller on an HP Integrity Server rx7620 May 2004 (Second Edition) Part Number 5990-8201 2004 Hewlett-Packard Development Company, L.P. Microsoft

More information

External Devices User Guide

External Devices User Guide External Devices User Guide Copyright 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. The only warranties for HP products and services

More information

HPE ALM Client MSI Generator

HPE ALM Client MSI Generator HPE ALM Client MSI Generator Software Version: 12.55 User Guide Document Release Date: August 2017 Software Release Date: August 2017 HPE ALM Client MSI Generator Legal Notices Warranty The only warranties

More information

HP StorageWorks Enterprise Virtual Array 4400 to 6400/8400 upgrade assessment

HP StorageWorks Enterprise Virtual Array 4400 to 6400/8400 upgrade assessment HP StorageWorks Enterprise Virtual Array 4400 to 6400/8400 upgrade assessment Part number: 5697-8185 First edition: June 2009 Legal and notice information Copyright 2009 Hewlett-Packard Development Company,

More information

HPE 3PAR Performance and Capacity Trending Service

HPE 3PAR Performance and Capacity Trending Service Data sheet HPE 3PAR Performance and Capacity Trending Service HPE Lifecycle Event Services HPE 3PAR Performance and Capacity Trending Service provides data collection, analysis, and reports with key performance

More information

HP MSA Family Installation and Startup Service

HP MSA Family Installation and Startup Service Technical data HP MSA Family Installation and HP Services Service benefits Allows your IT resources to stay focused on their core tasks and priorities Reduces implementation time, impact, and risk to your

More information

QuickSpecs. Models SATA RAID Controller HP 6-Port SATA RAID Controller B21. HP 6-Port SATA RAID Controller. Overview.

QuickSpecs. Models SATA RAID Controller HP 6-Port SATA RAID Controller B21. HP 6-Port SATA RAID Controller. Overview. Overview HP 6 Port SATA RAID controller provides customers with new levels of fault tolerance for low cost storage solutions using SATA hard drive technologies. Models SATA RAID Controller 372953-B21 DA

More information

HP Virtual Connect Enterprise Manager

HP Virtual Connect Enterprise Manager HP Virtual Connect Enterprise Manager Data Migration Guide HP Part Number: 487488-001 Published: April 2008, first edition Copyright 2008 Hewlett-Packard Development Company, L.P. Legal Notices Confidential

More information

HP Web Jetadmin 8.0 Credential Store Feature

HP Web Jetadmin 8.0 Credential Store Feature HP Web Jetadmin 8.0 Credential Store Feature Table of Contents: Overview...1 The Credential Store...1 Interacting with the Credential Store...2 Configuration of Device Credentials...2 Example...3 Credential

More information

Introduction...2. Executive summary...2. Test results...3 IOPs...3 Service demand...3 Throughput...4 Scalability...5

Introduction...2. Executive summary...2. Test results...3 IOPs...3 Service demand...3 Throughput...4 Scalability...5 A6826A PCI-X Dual Channel 2Gb/s Fibre Channel Adapter Performance Paper for Integrity Servers Table of contents Introduction...2 Executive summary...2 Test results...3 IOPs...3 Service demand...3 Throughput...4

More information

Using NFS as a filesystem type with HP Serviceguard A on HP-UX 11i v3

Using NFS as a filesystem type with HP Serviceguard A on HP-UX 11i v3 Using NFS as a filesystem type with HP Serviceguard A.11.20 on HP-UX 11i v3 Technical white paper Table of contents Introduction... 2 Audience... 2 Terms and Definitions... 2 Serviceguard support for NFS

More information

Guidelines for using Internet Information Server with HP StorageWorks Storage Mirroring

Guidelines for using Internet Information Server with HP StorageWorks Storage Mirroring HP StorageWorks Guidelines for using Internet Information Server with HP StorageWorks Storage Mirroring Application Note doc-number Part number: T2558-96338 First edition: June 2009 Legal and notice information

More information

HP-UX Software and Patching Management Using HP Server Automation

HP-UX Software and Patching Management Using HP Server Automation HP-UX Software and Patching Management Using HP Server Automation Software Version 7.84, released August 2010 Overview... 2 Patch Management for HP-UX Prerequisites... 2 HP-UX Patching Features... 2 Importing

More information

Table of Contents. HP A7173A PCI-X Dual Channel Ultra320 SCSI Host Bus Adapter. Performance Paper for HP PA-RISC Servers

Table of Contents. HP A7173A PCI-X Dual Channel Ultra320 SCSI Host Bus Adapter. Performance Paper for HP PA-RISC Servers HP A7173A PCI-X Dual Channel Ultra32 SCSI Host Bus Adapter Performance Paper for HP PA-RISC Servers Table of Contents Introduction...2 Executive Summary...2 Test Results...3 I/Ops...3 Service Demand...4

More information

Disaster Recovery Guide for Windows 2008 and RHEL 5.x platforms with external disk support

Disaster Recovery Guide for Windows 2008 and RHEL 5.x platforms with external disk support Disaster Recovery Guide for Windows 2008 and RHEL 5.x platforms with external disk support HP Data Protector 6.11 Technical white paper Table of contents 1. Assisted Manual Disaster Recovery... 2 2. Overview

More information

HP Data Protector Media Operations 6.11

HP Data Protector Media Operations 6.11 HP Data Protector Media Operations 6.11 Getting started This guide describes installing, starting and configuring Media Operations. Copyright 2009 Hewlett-Packard Development Company, L.P. Part number:

More information

Management and Printing User Guide

Management and Printing User Guide Management and Printing User Guide Copyright 2007 Hewlett-Packard Development Company, L.P. Windows is a U. S. registered trademark of Microsoft Corporation. Intel and Centrino are trademarks or registered

More information

Dynamic Root Disk Administrator's Guide

Dynamic Root Disk Administrator's Guide Dynamic Root Disk Administrator's Guide HP-UX 11i v2, HP-UX 11i v3 HP Part Number: 5992-5856 Published: January 2009 Edition: 1.0 Copyright 2009 Hewlett-Packard Development Company, L.P. Confidential computer

More information

HP Data Protector A Support for Windows Vista and Windows Server 2008 Clients Whitepaper

HP Data Protector A Support for Windows Vista and Windows Server 2008 Clients Whitepaper HP Data Protector A.06.00 Support for Windows Vista and Windows Server 2008 Clients Whitepaper 1 Index Introduction... 3 Data Protector A.06.00 Installation on Windows Vista and Windows Server 2008 systems...

More information

HP-UX in Comparison with Previous HP-UX Releases

HP-UX in Comparison with Previous HP-UX Releases HP-UX 11.31 in Comparison with Previous HP-UX Releases DECUS Presentation, 04/17/2007, Nürnberg Authors: Victor Senderov Zlatina Yordanova 2006 Hewlett-Packard Development Company, L.P. The inf ormation

More information

HP 3PARInfo 1.4 User Guide

HP 3PARInfo 1.4 User Guide HP 3PARInfo 1.4 User Guide Abstract This guide provides information about installing and using HP 3PARInfo. It is intended for system and storage administrators who monitor and direct system configurations

More information

Installing and configuring HP Integrity VM for HP SIM 5.x

Installing and configuring HP Integrity VM for HP SIM 5.x Installing and configuring HP Integrity VM for HP SIM 5.x Table of Contents IntTroduction... 2 Requirement... 2 Software... 2 Hardware... 2 Installing and configuring HPVM... 2 Install... 2 Configure...

More information

TRIM Integration with Data Protector

TRIM Integration with Data Protector TRIM Integration with Data Protector Table of Contents Introduction... 3 Prerequisites... 3 TRIM Internals... 3 TRIM s Data Organization... 3 TRIM s Architecture... 4 Implications for Backup... 4 Sample

More information

External Media Cards User Guide

External Media Cards User Guide External Media Cards User Guide SD logo is a trademark of its proprietor. Copyright 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice.

More information

HP 3PAR OS MU2 Patch 11

HP 3PAR OS MU2 Patch 11 HP 3PAR OS 321 MU2 Patch 11 Release Notes This release notes document is for Patch 11 and intended for HP 3PAR Operating System Software 321200 (MU2) Patch 11 (P11) HP Part Number: QL226-98118 Published:

More information

HP StorageWorks MSA/P2000 Family Disk Array Installation and Startup Service

HP StorageWorks MSA/P2000 Family Disk Array Installation and Startup Service HP StorageWorks MSA/P2000 Family Disk Array Installation and Startup Service HP Services Technical data The HP StorageWorks MSA/P2000 Family Disk Array Installation and Startup Service provides the necessary

More information

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Currently shipping versions:

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Currently shipping versions: Currently shipping versions: HP Integrity VM (HP-UX 11i v2 VM Host) v3.5 HP Integrity VM (HP-UX 11i v3 VM Host) v4.1 Integrity Virtual Machines (Integrity VM) is a soft partitioning and virtualization

More information

HPE RDX Utility Version 2.36 Release Notes

HPE RDX Utility Version 2.36 Release Notes HPE RDX Utility Version 2.36 Release Notes (RDX Tools 1.59) Abstract RDX Utility 2.36 (RDX Tools 1.59) enhances RDX Utility reporting for cartridges with a capacity greater than 2TB and implements Hewlett

More information

Data Protector. Software Version: Zero Downtime Backup Integration Guide

Data Protector. Software Version: Zero Downtime Backup Integration Guide Data Protector Software Version: 10.00 Zero Downtime Backup Integration Guide Document Release Date: June 2017 Software Release Date: June 2017 Legal Notices Warranty The only warranties for Hewlett Packard

More information

HPE Serviceguard I H6487S

HPE Serviceguard I H6487S Course data sheet HPE course number Course length Delivery mode View schedule, local pricing, and register View related courses H6487S 5 days ILT View now View now HPE Serviceguard I H6487S This course

More information

Using NFS as a file system type with HP Serviceguard A on HP-UX and Linux

Using NFS as a file system type with HP Serviceguard A on HP-UX and Linux Technical white paper Using NFS as a file system type with HP Serviceguard A.11.20 on HP-UX and Linux Table of contents Introduction 2 Audience 2 Serviceguard support for NFS on HP-UX and Linux 2 Overview

More information

HP AutoPass License Server

HP AutoPass License Server HP AutoPass License Server Software Version: 9.0 Windows, Linux and CentOS operating systems Support Matrix Document Release Date: October 2015 Software Release Date: October 2015 Page 2 of 10 Legal Notices

More information

HP XP7 High Availability User Guide

HP XP7 High Availability User Guide HP XP7 High Availability User Guide Abstract HP XP7 High Availability helps you create and maintain a synchronous copy of critical data in a remote location. This document describes and provides instructions

More information

Replacing the Battery HP t5730 and t5735 Thin Clients

Replacing the Battery HP t5730 and t5735 Thin Clients Replacing the Battery HP t5730 and t5735 Thin Clients Copyright 2009 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. Microsoft and Windows

More information

HP Storage Provisioning Manager HP 3PAR StoreServ Peer Persistence

HP Storage Provisioning Manager HP 3PAR StoreServ Peer Persistence Technical white paper HP Storage Provisioning Manager HP 3PAR StoreServ Peer Persistence Handling HP 3PAR StoreServ Peer Persistence with HP Storage Provisioning Manager Click here to verify the latest

More information

HP Fortify Scanning Plugin for Xcode

HP Fortify Scanning Plugin for Xcode HP Fortify Scanning Plugin for Xcode Software Version: 4.40 User Guide Document Release Date: November 2015 Software Release Date: November 2015 Legal Notices Warranty The only warranties for HP products

More information

System information update for system board replacement events

System information update for system board replacement events System information update for system board replacement events Standard Operating Procedure (SOP) When you replace the system board on the HP Pro Tablet 608 G1, the system s EEPROM is not able to detect

More information

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Currently shipping versions:

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Currently shipping versions: Currently shipping versions: HP Integrity VM (HP-UX 11i v2 VM Host) v3.5 HP Integrity VM (HP-UX 11i v3 VM Host) v4.0 Integrity Virtual Machines (Integrity VM) is a soft partitioning and virtualization

More information

HP Network Node Manager ispi Performance for Quality Assurance Software

HP Network Node Manager ispi Performance for Quality Assurance Software HP Network Node Manager ispi Performance for Quality Assurance Software Intelligent Response Agent for the Windows and Linux operating systems Software Version: 9.20 Installation Guide Document Release

More information

Generating Unique System IDs (SIDs) after Disk Duplication using Altiris Deployment Solution

Generating Unique System IDs (SIDs) after Disk Duplication using Altiris Deployment Solution Generating Unique System IDs (SIDs) after Disk Duplication using Altiris Deployment Solution HP thin clients running Microsoft Windows Embedded Standard 2009 (WES) and Windows XP Embedded (XPe) Table of

More information

IDE Connector Customizer Readme

IDE Connector Customizer Readme IDE Connector Customizer Readme Software version: 1.0 Publication date: November 2010 This file provides information about IDE Connector Customizer 1.0. Prerequisites for IDE Connector Customizer The Installation

More information

QuickSpecs. What's New. Models. ProLiant Essentials Server Migration Pack - Physical to ProLiant Edition. Overview

QuickSpecs. What's New. Models. ProLiant Essentials Server Migration Pack - Physical to ProLiant Edition. Overview Overview Upgrading or replacing your existing server? Migration is now an option! Replicate the server you are replacing using the software, the only product of its kind from a server vendor that provides

More information

HP LF Printing Knowledge Center

HP LF Printing Knowledge Center HP LF Printing Knowledge Center Proof a press with CMYK Application: QuarkXPress 6.5 Printer: HP Designjet 30/130 series Software: HP Software RIP Operating System: Windows 1. First recommendations: See

More information

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Retired. Currently shipping versions:

QuickSpecs. HP Integrity Virtual Machines (Integrity VM) Overview. Retired. Currently shipping versions: Currently shipping versions: HP Integrity VM (HP-UX 11i v3 VM Host) v4.2 HP Integrity VM (HP-UX 11i v2 VM Host) v3.5 Integrity Virtual Machines (also called Integrity VM or HPVM) is a hypervisor product

More information

HP Operations Manager

HP Operations Manager HP Operations Manager Software Version: 9.1x and 9.2x UNIX and Linux operating systems High Availability Through Server Pooling Document Release Date: December 2016 Software Release Date: December 2016

More information

Configuring the HP StorageWorks Modular Smart Array 1000 and 1500cs for external boot with Novell NetWare New Installations

Configuring the HP StorageWorks Modular Smart Array 1000 and 1500cs for external boot with Novell NetWare New Installations Technical Note Revised October 2006 Prepared by: Network Storage Solutions Hewlett Packard Company Contents Configuring the StorageWorks MSA1000 and MSA1500cs for External Boot with NetWare Considerations...3

More information

HPE Network Node Manager i Software

HPE Network Node Manager i Software HPE Network Node Manager i Software Step-by-Step Guide to Using NNMi Import and Export Tools White Paper Contents Introduction... 3 Useful Scenarios... 3 Best Practices... 3 Learning the Specific Export

More information

HP Integrity Servers and HP 9000 Servers Firmware Update Options

HP Integrity Servers and HP 9000 Servers Firmware Update Options HP Integrity Servers and HP 9000 Servers Firmware Update Options HP Part Number: 5900-2655 Published: March 2013 Edition: 4 Copyright 2010, 2013 Hewlett-Packard Development Company, L.P The information

More information

XP7 High Availability User Guide

XP7 High Availability User Guide XP7 High Availability User Guide Abstract HPE XP7 High Availability helps you create and maintain a synchronous copy of critical data in a remote location. This document describes and provides instructions

More information

HPE 3PAR Online Import Utility 1.5.0

HPE 3PAR Online Import Utility 1.5.0 HPE 3PAR Online Import Utility 1.5.0 Release tes Abstract This document provides information about modifications, corrected issues, or known issues related to the HPE 3PAR Online Import Utility. Part Number:

More information

Dell Storage Center with HP UX 11i v3 Best Practices

Dell Storage Center with HP UX 11i v3 Best Practices Dell Storage Center with HP UX 11i v3 Best Practices Daniel Tan, UNIX/Linux Product Specialist Dell Storage Engineering December 2015 Dell Best Practices Revisions Date Rev. Description Author July 2014

More information

HP ProCurve Manager Plus 3.0

HP ProCurve Manager Plus 3.0 Product overview HP ProCurve Manager Plus is a Microsoft Windows-based network management platform that enables mapping, configuration, and monitoring. HP ProCurve Manager Plus 3.0 provides security and

More information

Achieve Patch Currency for Microsoft SQL Server Clustered Environments Using HP DMA

Achieve Patch Currency for Microsoft SQL Server Clustered Environments Using HP DMA Technical white paper Achieve Patch Currency for Microsoft SQL Server Clustered Environments Using HP DMA HP Database and Middleware Automation version 10.30 Table of Contents Purpose 2 Prerequisites 4

More information

HPE File Data Migration Service

HPE File Data Migration Service Data sheet HPE File Data Migration Service HPE Consulting and Integration Services File migration simplified Available in convenient packaged offerings, HPE File Data Migration Service is designed to help

More information

HP Image and Application Services

HP Image and Application Services Data sheet HP Image and Application Services HP Configuration Services Let HP manage your PC image so you can focus on your business Services overview HP Image and Application Services leverage HP technical

More information

HPE BladeSystem c-class Virtual Connect Support Utility Version Release Notes

HPE BladeSystem c-class Virtual Connect Support Utility Version Release Notes HPE BladeSystem c-class Virtual Connect Support Utility Version 1.12.0 Release Notes Abstract This document provides release information for the HPE BladeSystem c-class Virtual Connect Support Utility

More information

HP Operations Orchestration Software

HP Operations Orchestration Software HP Operations Orchestration Software Software Version: 7.51 HP Operations Manager Integration Guide Document Release Date: August 2009 Software Release Date: August 2009 Legal Notices Warranty The only

More information

Register for this course. Find this course in the Training calendar and click the "Register" link.

Register for this course. Find this course in the Training calendar and click the Register link. Course Data Sheet HP-UX System and Network Administration I Course description This course teaches you to configure, manage, maintain, and administer HP-UX servers. The course focuses on configuration

More information

Imaging the HP Z240 Workstation

Imaging the HP Z240 Workstation Technical white paper Imaging the HP Z240 Workstation with Windows 10 Pro (64-bit) and Microsoft Deployment Toolkit (MDT) 2013 v1.2 A system image enables you to automate the deployment of computers in

More information

HP Installation and Startup Service for HP Superdome 2

HP Installation and Startup Service for HP Superdome 2 HP Installation and Startup Service for HP Superdome 2 HP Services Technical data The HP Installation and Startup Service for HP Superdome 2 is designed to provide onsite installation of the HP Superdome

More information