Migrating LVM Partitions to New Logical Volume (Drive) – Part VI ================================================================================ This is the 6th part of our ongoing Logical Volume Management series, in this article we will show you how to migrate existing logical volumes to other new drive without any downtime. Before moving further, I would like to explain you about LVM Migration and its features. ![LVM Storage Migration](http://www.tecmint.com/wp-content/uploads/2014/10/LVM-Migrations.png) LVM Storage Migration ### What is LVM Migration? ### **LVM** migration is one of the excellent feature, where we can migrate the logical volumes to a new disk without the data-loss and downtime. The purpose of this feature is it to move our data from old disk to a new disk. Usually, we do migrations from one disk to other disk storage, only when an error occur in some disks. ### Features of Migration ### - Moving logical volumes from one disk to other disk. - We can use any type of disk like SATA, SSD, SAS, SAN storage iSCSI or FC. - Migrate disks without data loss and downtime. In LVM Migration, we will swap every volumes, file-system and it’s data in the existing storage. For example, if we have a single Logical volume, which has been mapped to one of the physical volume, that physical volume is a physical hard-drive. Now if we need to upgrade our server with SSD Hard-drive, what we used to think at first? reformat of disk? No! we don’t have to reformat the server. The LVM has the option to migrate those old SATA Drives with new SSD Drives. The Live migration will support any kind of disks, be it local drive, SAN or Fiber channel too. #### My Server Setup #### Operating System : CentOS 6.5 Final IP Address : 192.168.0.224 System Hostname : lvmmig.tecmintlocal.com ### Step 1: Check for Present Drives ### **1.** Assume we are already having one virtual drive named “**vdb**“, which mapped to one of the logical volume “**tecmint_lv**“. Now we want to migrate this “**vdb**” logical volume drive to some other new storage. Before moving further, first verify that the virtual drive and logical volume names with the help of **fdisk** and lvs commands as shown. # fdisk -l | grep vd # lvs ![Check Logical Volume Disk](http://www.tecmint.com/wp-content/uploads/2014/10/Check-Logical-Volume-Disk.png) Check Logical Volume Disk ### Step 2: Check for Newly added Drive ### **2.** Once we confirm our existing drives, now it’s time to attach our new SSD drive to system and verify newly added drive with the help of fdisk command. # fdisk -l | grep dev ![Check New Added Drive](http://www.tecmint.com/wp-content/uploads/2014/10/Check-New-Added-Drive.png) Check New Added Drive **Note**: Did you see in the above screen, that the new drive has been added successfully with name “**/dev/sda**“. ### Step 3: Check Present Logical and Physical Volume ### **3.** Now move forward to create physical volume, volume group and logical volume for migration. Before creating volumes, make sure to check the present logical volume data under **/mnt/lvm** mount point. Use the following commands to list the mounts and check the data. # df -h # cd /mnt/lvm # cat tecmint.txt ![Check Logical Volume Data](http://www.tecmint.com/wp-content/uploads/2014/10/Check-Logical-Volume-Data.png) Check Logical Volume Data **Note**: For demonstration purpose, we’ve created two files under **/mnt/lvm** mount point, and we migrate these data to a new drive without any downtime. **4.** Before migrating, make sure to confirm the names of logical volume and volume group for which physical volume is related to and also confirm which physical volume used to hold this volume group and logical volume. # lvs # vgs -o+devices | grep tecmint_vg ![Confirm Logical Volume Names](http://www.tecmint.com/wp-content/uploads/2014/10/Confirm-Logical-Volume-Names.png) Confirm Logical Volume Names **Note**: Did you see in the above screen, that “**vdb**” holds the volume group **tecmint_vg**. ### Step 4: Create New Physical Volume ### **5.** Before creating Physical Volume in our new added SSD Drive, we need to define the partition using fdisk. Don’t forget to change the Type to LVM(8e), while creating partitions. # pvcreate /dev/sda1 -v # pvs ![Create Physical Volume](http://www.tecmint.com/wp-content/uploads/2014/10/Create-Physical-Volume.png) Create Physical Volume **6.** Next, add the newly created physical volume to existing volume group tecmint_vg using ‘vgextend command’ # vgextend tecmint_vg /dev/sda1 # vgs ![Add Physical Volume](http://www.tecmint.com/wp-content/uploads/2014/10/Add-Physical-Volume.png) Add Physical Volume **7.** To get the full list of information about volume group use ‘vgdisplay‘ command. # vgdisplay tecmint_vg -v ![List Volume Group Info](http://www.tecmint.com/wp-content/uploads/2014/10/List-Volume-Group-Info.png) List Volume Group Info **Note**: In the above screen, we can see at the end of result as our PV has added to the volume group. **8.** If in-case, we need to know more information about which devices are mapped, use the ‘**dmsetup**‘ dependency command. # lvs -o+devices # dmsetup deps /dev/tecmint_vg/tecmint_lv In the above results, there is **1** dependencies (PV) or (Drives) and here **17** were listed. If you want to confirm look into the devices, which has major and minor number of drives that are attached. # ls -l /dev | grep vd ![List Device Information](http://www.tecmint.com/wp-content/uploads/2014/10/List-Device-Information.png) List Device Information **Note**: In the above command, we can see that major number with **252** and minor number **17** is related to **vdb1**. Hope you understood from above command output. ### Step 5: LVM Mirroring Method ### **9.** Now it’s time to do migration using Mirroring method, use ‘**lvconvert**‘ command to migrate data from old logical volume to new drive. # lvconvert -m 1 /dev/tecmint_vg/tecmint_lv /dev/sda1 - **-m** = mirror - **1** = adding a single mirror ![Mirroring Method Migration](http://www.tecmint.com/wp-content/uploads/2014/10/Mirroring-Method-Migration.png) Mirroring Method Migration **Note**: The above migration process will take long time according to our volume size. **10.** Once migration process completed, verify the converted mirror. # lvs -o+devices ![Verify Converted Mirror](http://www.tecmint.com/wp-content/uploads/2014/10/Verify-Converted-Mirror.png) Verify Converted Mirror **11.** Once you sure that the converted mirror is perfect, you can remove the old virtual disk **vdb1**. The option **-m** will remove the mirror, earlier we’ve used **1** for adding the mirror. # lvconvert -m 0 /dev/tecmint_vg/tecmint_lv /dev/vdb1 ![Remove Virtual Disk](http://www.tecmint.com/wp-content/uploads/2014/10/Remove-Virtual-Disk.png) Remove Virtual Disk **12.** Once old virtual disk is removed, you can re-check the devices for logical volumes using following command. # lvs -o+devices # dmsetup deps /dev/tecmint_vg/tecmint_lv # ls -l /dev | grep sd ![Check New Mirrored Device](http://www.tecmint.com/wp-content/uploads/2014/10/Check-New-Mirrored-Device.png) Check New Mirrored Device In the above picture, did you see that our logical volume now depends on **8,1** and has **sda1**. This indicates that our migration process is done. **13.** Now verify the files that we’ve migrated from old to new drive. If same data is present at the new drive, that means we have done every steps perfectly. # cd /mnt/lvm/ # cat tecmin.txt ![Check Mirrored Data](http://www.tecmint.com/wp-content/uploads/2014/10/Check-Mirrored-Data.png) Check Mirrored Data **14.** After everything perfectly created, now it’s time to delete the **vdb1** from volume group and later confirm, which devices are depends on our volume group. # vgreduce /dev/tecmint_vg /dev/vdb1 # vgs -o+devices **15.** After removing vdb1 from volume group **tecmint_vg**, still our logical volume is present there because we have migrated it to **sda1** from **vdb1**. # lvs ![Delete Virtual Disk](http://www.tecmint.com/wp-content/uploads/2014/10/Delete-Virtual-Disk.png) Delete Virtual Disk ### Step 6: LVM pvmove Mirroring Method ### **16.** Instead using ‘**lvconvert**’ mirroring command, we use here ‘**pvmove**‘ command with option ‘**-n**‘ (logical volume name) method to mirror data between two devices. # pvmove -n /dev/tecmint_vg/tecmint_lv /dev/vdb1 /dev/sda1 The command is one of the simplest way to mirror the data between two devices, but in real environment **Mirroring** is used more often than **pvmove**. ### Conclusion ### In this article, we have seen how to migrate the logical volumes from one drive to other. Hope you have learnt new tricks in logical volume management. For such setup one should must know about the basic of logical volume management. For basic setups, please refer to the links provided on top of the article at requirement section. -------------------------------------------------------------------------------- via: http://www.tecmint.com/lvm-storage-migration/#comment-331336 作者:[Babin Lonston][a] 译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出 [a]:http://www.tecmint.com/author/babinlonston/