LVM Relocate Volume Group to New Server: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
 
Line 7: Line 7:
##: <tt>'''# vgchange -an <volume group>'''</tt>
##: <tt>'''# vgchange -an <volume group>'''</tt>
## Export the volume group.
## Export the volume group.
### <tt>'''# vgexport <volume group>'''</tt>
##: <tt>'''# vgexport <volume group>'''</tt>
## Remove all information associated with the physical volumes.
## Remove all information associated with the physical volumes.
### [[LVM_Remove_a_Physical_Volume#Removal_of_a_Physical_Volume_from_LVM|Removal of a Physical Volume from LVM.]]
### [[LVM_Remove_a_Physical_Volume#Removal_of_a_Physical_Volume_from_LVM|Removal of a Physical Volume from LVM.]]
Line 14: Line 14:
# New Server  
# New Server  
## Scan for new physical volumes.
## Scan for new physical volumes.
### <tt>'''# pvscan'''</tt>
##: <tt>'''# pvscan'''</tt>
## Import the volume group from the old server.
## Import the volume group from the old server.
### <tt>'''# vgimport <volume group>'''</tt>
##: <tt>'''# vgimport <volume group>'''</tt>
## Activate the volume group.
## Activate the volume group.
### <tt>'''# vgchange -ay <volume group>'''</tt>
##: <tt>'''# vgchange -ay <volume group>'''</tt>


== Further Reading ==
== Further Reading ==

Latest revision as of 14:57, 12 December 2017

Relocate Volume Group to New Server

AIX

Linux

  1. Old Server
    1. Dismount all active logical volumes from their mount points.
    2. Deactivate the volume group.
      # vgchange -an <volume group>
    3. Export the volume group.
      # vgexport <volume group>
    4. Remove all information associated with the physical volumes.
      1. Removal of a Physical Volume from LVM.
      2. Removal of the Physical Volume from the System.
  1. New Server
    1. Scan for new physical volumes.
      # pvscan
    2. Import the volume group from the old server.
      # vgimport <volume group>
    3. Activate the volume group.
      # vgchange -ay <volume group>

Further Reading

  1. Moving a Volume Group to Another System