LVM commands tutorial : Part 2 : Volume group (vgcfgbackup, vgcfgrestore, vgchange)

Series of tutorial to learn LVM commands. In this part, how to backup/restore VG configuration and to change VG state (vgcfgbackup, vgcfgrestore, vgchange)

Volume group configurations plays vital role in moving PV, VG, data across systems. Lets start with configuration backup command.
Command : vgcfgbackup
As the command reads, it takes volume group configuration backup into a disk file residing under /etc/lvmconf directory in file /etc/lvmconf/vg_name.conf. It reads the LVM header details from system area of the disk and copies it to file. This file helps you to restore configuration on newly added disk in place of old disk which may have got corrupted or failed.
It is recommended to have this backup taken after every LVM level change. By default all LVM commands altering LVM details are designed to take this backup automatically hence manually running command is not necessary.
To take manual configuration backup use command as below :
This needs to run for every volume group available on system. This command has couple of options :
  • -f file Save backup in file specified rather than default location
  • -u       Only updates extra PV which are added to VG after last backup. Only new PVs required to be online on system. IF -u not used all PV under VG should be online while running command.

Command : vgcfgrestore
This command restores the VG configuration taken using above command. Command mainely needs 2 argument volume group name of which configuration neds to be restored and a PV name on which configuration needs to be restored. There are two things which needs to keep in mind.
If PV on which we are restoring the backup is part of mirror copy, then it should be deactivated first. Then restore backup and then reactivate it. Command sequence will be :
If PV is not a part of mirror then you should deactivate volume group first then restore the backup and then activate volume group again. Command sequence will be :
This command has several options which can be used with it :
  • -l                   List configuration only
  • -F                  Forcefully restore
  • -f file             Restore configuration from specified file not from default backup location
  • -v                   Verbose mdoe
  • -R                  Forcefully restore even if there is mismatch between PV in kernel and in config.
  • -o old_path Restore config saved for old PV (path supplied) to new PV mentioned in command.

Command : vgchange
This command used to make volume group active or inactive. Activated volume group simply means its available for use. There are different mode of volume groups in which they can be activated. They can be listed as below :
  1. Normal availability mode
  2. Cluster aware mode
  3. Shareable mode
  4. Quoram requirement mode
vgchange command can be used with specified options and their values to activate or deactivate volume group. For example to normally activate it should be supplied with argument -a nd its value y. See below output to activate and then deactivate volume group
Above stated modes can be activated/deactivated using below options :
  • -a y/n Normal availability mode
  • -c y/n Cluster aware mode
  • -S y/n Shareable mode
  • -q y/n Quoram requirement mode
  • -p Only activate if all related PVs are online
  • -s Disable stale PE sync
  • -x Cross activate shareable volume group

This concludes third post of part two related to volume group. In next and last post of part two, we are covering how to remove volume group from system and how to sync stale PE within volume group.
SHARE

sangeethakumar

  • Image
  • Image
  • Image
  • Image
  • Image
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment