Quantcast
Channel: thinking sysadmin » virtualization
Viewing all articles
Browse latest Browse all 2

VMware/NFS/NetApp SnapRestore/Linux LVM Single File Recovery Notes

$
0
0

There have been a few posts elsewhere discussing file-level recovery for Linux VMs on NetApp NFS datastores, but none that have dealt specifically with Linux LVM-encapsulated partitions.

Here’s our in-house procedure for recovery; note that we do not have FlexClone licensed on our filers.

Prerequisites

  • An existing VMware ESX infrastructure, connected to a NetApp filer NFS datastore; SnapRestore speeds the recovery process but is not mandatory – see discussion below.
  • A backup script or system which coordinates VMware snapshots with NetApp snapshots – perhaps something along the lines of Rick Scherer’s script.
  • A dedicated Linux restore VM, at a similar version level to the rest of your Linux VM infrastructure. This VM should have LVM support, but should not have any volume groups (VGs) or logical volumes (LVs) configured – volume group and logical volume names on the VMDK you are restoring from must not conflict with VGs and LVs already in use on the restore system; the simplest way to guarantee this is to simply not have any VGs or LVs.

Restore Procedure

  • Restore the VMDK file from the appropriate snapshot to a new location in the datastore. With SnapRestore, this can be done as follows (one line in the filer CLI, restoring from snapshot sv_daily.0 to a new file – again, be extremely careful not to overwrite the current version of the VMDK in your datastore, consider restoring to an entirely different directory in the FlexVol):

    snap restore -t file -s sv_daily.0
    -r /vol/vmware04_sis/system.example.com/system.example.com-restore.vmdk
    /vol/vmware04_sis/system.example.com/system.example.com.vmdk

    Follow the prompts, verifying the restore path is correct and is not the path to your existing VMDK. Do the same for the flat VMDK file (again, one line, and, as before, use caution to make sure you do not clobber an existing file):

    snap restore -t file -s sv_daily.0
    -r /vol/vmware04_sis/system.example.com/system.example.com-restore-flat.vmdk
    /vol/vmware04_sis/system.example.com/system.example.com-flat.vmdk

    Without SnapRestore, you can simply mount the NFS export of the datastore on a Linux machine and use “cp” to copy the files out of the snapshot. For flat VMDK files, expect this copy to run for a substantial amount of time compared the nearly-instant recovery SnapRestore offers.

  • Manually edit the line below “# Extent description” in the recovered .vmdk file to match the path to the recovered flat VMDK. In this case, it would look something like this:
    # Extent description
    RW 20971520 VMFS "system.example.com-restore-flat.vmdk"
  • Attach the recovered VMDK to your powered-off restore host. Boot the restore host.
  • Once your restore host is up, use “pvscan”, “vgscan” and “lvscan” (each without arguments) as root to examine available LVM components. Then, use the “lvchange” command to activate the necessary volume group (in this case, “VolGroup00″):
    # lvchange -ay VolGroup00
  • Mount the appropriate logical volume – for example, LogVol00 in VolGroup00:
    mount -o ro /dev/VolGroup00/LogVol00 /mnt
    Restore files by copying them out of /mnt.

Cleanup

  • Shut down the Linux restore host.
  • Remove the recovery VMDK – the files restored with SnapRestore or by “cp” above – from the restore host in the VMware Infrastructure Client.
  • Delete the recovery .vmdk and -flat.vmdk files in the NFS datastore. Don’t screw up here: Be sure to delete the recovery files only, not the working VMDK.

Viewing all articles
Browse latest Browse all 2

Trending Articles