Posted On March 31, 2019

Limitations: VM Import to AWS

kimconnect 0 comments
blog.KimConnect.com >> Virtualization >> Limitations: VM Import to AWS
VM to AWS instance limitations:
– Cannot import VMs that have been created via P2V process
– Cannot import more than one volume. You must import the VM with only the boot volume, and import any additional disks using the ec2-import-volume command. After the ImportInstance task is complete, use the ec2-attach-volume command to associate the additional volumes with your instance.
– Cannot export Amazon Elastic Block Store (Amazon EBS) data volumes
– Cannot export an instance that has more than one network interface

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Quick Snippet to Remove Virtual Machine Snapshots in VMM

$vmNames=@( 'MACHINE1', 'MACHINE2' ) foreach($vmName in $vmNames){ $checkpoint = Get-SCVMCheckpoint -VM $vmName if($checkpoint){$checkpoint|%{Remove-SCVMCheckpoint -VMCheckpoint $_…

Example of a HipChat Server Installation

FQDN: hipchat.kimconnect.com Internal IP: 10.10.100.205 Public IP: 12.12.12.12   Firewall configurations: inbound TCP 443 inbound…

How To Configure Alternative Storage for a Kubernetes (K8s) Worker Node

The below illustration is assuming that one has a local RAID mount being added to…