将虚拟机快照复制到新的虚拟机环境

将虚拟机快照复制到新的虚拟机环境

我们有 2 个独立的 VMWare 环境,一个是主环境,它在许多站点上拥有数百台虚拟机。另一个环境小得多,安装在一台服务器上,仅用于存档旧系统。

我想要做的是拍摄我们其中一台实时虚拟机的当前状态的快照,然后使用它复制到另一个 VMWare 环境并在那里创建一个新机器,并将其用作该系统的存档。

这可能吗/容易吗?

答案1

哎呀,如果您一直在使用 vSphere 6,那么您就可以进行 vCenter 间克隆并完成它。

无论如何,如果您使用 PowerCLI,那么对于 5.5 来说,这项任务也并不是很难。

步骤如下:

  1. 拍摄虚拟机快照(使用 PowerCLI 或任一 GUI,无所谓)

  2. 克隆快照使用这个方便的 PowerCLI 工具,
    New-VM -Name $CloneName -VM $SourceVM -Location $CloneFolder -Datastore $Datastore -ResourcePool $ResourcePool -VMHost $VMHost -LinkedClone -ReferenceSnapshot $Snapshot
    您可以查看“New-VM”文档了解所有选项的含义以及如何填写它们。
    关键是“-ReferenceSnapshot”选项。

  3. 将你崭新的 VM 导出为 OVF/OVA,或将文件夹从 DS 复制到网络上的某个位置

  4. 将其导入到另一个 vCenter

我的 IT 安全团队曾要求获取正在运行的虚拟机的“取证”副本,包括内存快照,这样他们就可以在出现病毒或某种漏洞的情况下进行调查。为了让我的生活更轻松,我编写了一个 PS 函数来处理所有繁重的工作。它只需要一个源虚拟机(按名称或对象)和磁盘上的一个文件夹。它会完成其余的工作。

Function ExportVM {
    Param(
    [parameter(Mandatory=$true)]
    [ValidateNotNullOrEmpty()]
    [PSObject]$SourceVM,

    [parameter(Mandatory=$true)]
    [ValidateNotNullOrEmpty()]
    [String]$DestinationPath
    )

    #Check if the destination path exists, bail out if it doesn't
    if ( -not (Test-path $DestinationPath -IsValid) ) {
        Write-Warning "Please provide a valid path for the exported VM"
        return
    }
    
    #Get the SourceVM, bail out if it fails
    if ($SourceVM.GetType().Name -eq "string"){
        try {
            $SourceVM = Get-VM $SourceVM -ErrorAction Stop
        }
        catch [Exception]{
            Write-Warning "VM $SourceVM does not exist"
            return
        }
    }
    elseif ($SourceVM -isnot [VMware.VimAutomation.ViCore.Impl.V1.Inventory.VirtualMachineImpl]){
        Write-Warning "You did not pass a string or a VM object for 'SourceVM'"
        Return
    }

    try {
        $DestinationPath = $DestinationPath + "\" + $SourceVM.Name

        #Setup the required compoments to compute an MD5 hash
        $algo = [System.Security.Cryptography.HashAlgorithm]::Create("MD5")
        $md5StringBuilder = New-Object System.Text.StringBuilder 50
        $ue = New-Object System.Text.UTF8Encoding

        #Define the snapshot name
        $SnapshotName = "IT-Security Export - " + (Get-Date -UFormat "%b-%d-%Y, %R")
        #Create the snapshot
        $Snapshot = New-Snapshot -VM $SourceVM -Name $SnapshotName -Description "Snapshot for IT-Security Forensic export" -Memory -Quiesce -Confirm:$false

        $Snapshot

        #Define variables needed to create the clone
        $CloneFolder = $SourceVM.Folder
        $Datastore = Get-Datastore -RelatedObject $SourceVM
        $ResourcePool = Get-ResourcePool -VM $SourceVM
        $VMHost = Get-VMHost -VM $SourceVM

        #Build a unique name for the cloned machine based on the snapshot name
        $algo.ComputeHash($ue.GetBytes($SnapshotName)) | % { [void] $md5StringBuilder.Append($_.ToString("x2")) }
        $CloneName = $SourceVM.Name +"_ITSecExport_" + $md5StringBuilder.ToString().SubString(0,15)

        #Clone the VM
        $CloneVM = New-VM -Name $CloneName -VM $SourceVM -Location $CloneFolder -Datastore $Datastore -ResourcePool $ResourcePool -VMHost $VMHost -LinkedClone -ReferenceSnapshot $Snapshot

        #Define the name of the PSDrive, based on the Datastore name
        $DSName = "ITSecExport_" + ($Datastore.name -replace "[^a-zA-Z0-9]","")
        #Check to see if it already exists, remove if it does
        if (Get-PSDrive | Where {$_.Name -like $DSName}) {
            Remove-PSDrive $DSName
        }
        #Add the new drive
        $PSDrive = New-PSDrive -Location $Datastore -Name $DSName -Scope Script -PSProvider VimDatastore -Root "\"

        #Define variables needed to copy the SourceVM's VMX and the snapshot's VMSN
        $SnapshotID = (Get-VM $SourceVM |Get-Snapshot | where {$_.Name -like $SnapshotName}).ExtensionData.ID
        $SourceVM_VMXPath = (Get-View $SourceVM).Config.Files.VmPathName.Split(" ")[1].replace("/","\")
        $SourceVM_VMSNPath = $SourceVM_VMXPath.Replace(".vmx", "-Snapshot" + $SnapshotID + ".vmsn")
        #$CloneVM_VMPath = (Get-View $CloneVM).Config.Files.VmPathName.Split(" ")[1].Split("/")[0]

        #Copy the VMSN and VMX
        Copy-DatastoreItem -Item ${DSName}:\$SourceVM_VMXPath -Destination $DestinationPath -Force
        Copy-DatastoreItem -Item ${DSName}:\$SourceVM_VMSNPath -Destination $DestinationPath -Force

        #Copy-DatastoreItem -Item ${DSName}:\$CloneVM_Path\* $DestinationPath"$CloneName" -Force -Recurse

        #Export the VM
        $CloneVM | Export-VApp -Destination $DestinationPath -Force

        #Clean up
        Remove-VM -DeletePermanently $CloneVM -Confirm:$false
        Remove-Snapshot -Snapshot $Snapshot -Confirm:$false
        Remove-PSDrive -Name $DSName
    }
    catch [Exception]{
        $ErrorMessage = $_.Exception.Message
        $FailedItem = $_.Exception.ItemName
        Write-Warning "Looks like we ran in to an error"
        Write-Warning "  $ErrorMessage"
        return
    }
}

答案2

据我所知,您可以简单地在主机之间复制虚拟机。首先安全关闭,然后停止虚拟机;然后将整个文件夹复制到另一个 VMWare 环境。复制文件夹后,在 Web UI 中,转到虚拟机菜单 ->将虚拟机添加到清单并将复制的机器添加到主机。打开机器电源时,您将收到一条消息,询问您是否已复制或移动机器,选择“已复制“。一旦 VM 在第二个 VMWare 环境中成功运行,您就可以在第一个 VMWare 环境中安全地将其移除和删除。根据您的网络配置,您可能需要更改一些设置,但它应该可以正常工作。

相关内容