0% found this document useful (0 votes)
400 views

How To Setup LVM Hot Spare

The document provides instructions for setting up LVM hot spare on a Linux system. It explains that a disk can be marked as a hot spare using the chpv command and that the hotsparepolicy and syncpolicy must be set using chvg to determine how failed disks are replaced and stale partitions are synchronized. Setting the policies to -hy -sy will automatically migrate partitions from a failing disk to the smallest available hot spare disk and synchronize stale partitions.

Uploaded by

raviguru
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
400 views

How To Setup LVM Hot Spare

The document provides instructions for setting up LVM hot spare on a Linux system. It explains that a disk can be marked as a hot spare using the chpv command and that the hotsparepolicy and syncpolicy must be set using chvg to determine how failed disks are replaced and stale partitions are synchronized. Setting the policies to -hy -sy will automatically migrate partitions from a failing disk to the smallest available hot spare disk and synchronize stale partitions.

Uploaded by

raviguru
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

How to setup LVM hot spare

Setup LVM hot spare.


Answer
Hot Spare only works if the volume group has mirrored logical volumes. There can be no logical
partitions using the drive to be marked a hot spare. The following command marks hdisk1 as a hot
spare disk:
# chpv -hy hdisk1
Now that the drive is marked as a hot spare you must determine the hotsparepolicy, and the syncpolicy.
Here are your options:
Hotsparepolicy:
y This policy automatically migrates partitions from one failing disk to one
spare disk. From the pool of hot spare disks, the smallest one that is big
enough to substitute for the failing disk will be used.
Y This policy automatically migrates partitions from a failing disk, but might
use the complete pool of hot spare disks.
n No automatic migration will take place. This is the default value for a volume group.
r This value removes all disks from the pool of hot spare disks for this volume group.
Syncpolicy:
y This will automatically try to synchronize stale partitions.
n This will not automatically try to synchronize stale partitions. The latter argument is also the default
for a volume group.
This is the syntax to set the policies:
# chvg -h hotsparepolicy -s syncpolicy VolumeGroup
for example:
# chvg -hy -sy vgname
Now the vg will have a hot spare.

You might also like