Troubleshoot live migration issues - Windows Server (2023)

  • Article
  • 17 minutes to read

This article provides information on solving the issues when live migrating virtual machines.

Applies to: Windows Server
Original KB number: 4558514

Basic troubleshooting checklist

  • Check the hosts are at the same level of patching and whether they can update to the latest rollup.

  • Update the BIOS, firmware and third party drivers.

  • Check whether the virtual machines have the latest matching integration services.

  • Check whether the migration is authorized on each side.

  • Check whether the protocol used is identical on each side.

  • Check whether the TCP Port 6600 and 3343 (for clustering) are listening on both sides.

  • Check compatibilities issues by running a Compare-VM command. Provide the name of the VM and the destination host. For example:

    Compare-VM -Name <vm_name> -DestinationHost <host_name>
  • Check whether any group policy object is preventing the migration from occurring. Verify that the following policy have at least the default settings.

    • Open GPEDIT.MSC and navigate to Computer Configuration\Windows Settings\Security Settings\Local Policies\User Rights Assignment.
      Open Create symbolic links and check whether the following user accounts are listed:
      • Administrators
      • NT VIRTUAL MACHINE\Virtual Machines
      • Log on as a service
      • NT SERVICE\ALL SERVICES
      • NT VIRTUAL MACHINE\Virtual Machines
  • Check for the antivirus exclusions. For more information, see Recommended antivirus exclusions for Hyper-V hosts.

  • Check the corruption of the Registry.pol file:
    Run notepad and open C:\Windows\System32\GroupPolicy\Machine\Registry.pol. The file must start with the PReg signature.

  • Compare permissions on the folders containing the virtual machines files with a working host with the same operating system level.

Next, find the event IDs that you encounter during live migration issue from the following sections.

Event ID 21502

Information regarding Event ID 21502

Live migration failed because a virtual switch used by the VM doesn't exist on the destination node "Host2"

Description

Live migration of VM failed. VM failed to live migrate because a virtual switch used by the VM doesn't exist on the destination node "Host2".

Action

The virtual switch must have the same name on all nodes.

If a virtual machine is connected to a virtual switch that doesn't exist on the destination node, then live migration fails at < 10%.

Give the virtual networks identical names. Refresh the virtual machine configuration so that network changes are reflected in cluster, and then try the live migration again.

Resolution

Open the Hyper-V Manager console and select Virtual Switch Manager. If the virtual switch doesn't exist, create or rename it with the same name and settings such as in other hosts.

Make sure to select the correct virtual switch under the VM's settings.

Live migration failed because the action "Move" didn't complete. Error Code: 0x80071398

Description

Live migration of VM failed.

Action

Right-click virtual machine > Information details > Show details. You see the following information:

The action "Move" didn't complete.

Error Code: 0x80071398

The operation failed because either the specified cluster node isn't the owner of the group, or the node isn't a possible owner of the group.

Troubleshoot live migration issues - Windows Server (1)

0x1398 5016 ERROR_HOST_NODE_NOT_GROUP_OWNER

The operation failed because either the specified cluster node isn't the owner of the group, or the node isn't a possible owner of the group.

Resolution

Open Windows PowerShell with Run as administrator, and run the following cmdlets:

  • Get-clusterResource -name "Virtual Machine VM1" | Get-clusterOwnerNode
  • Get-clusterResource -name "Virtual Machine Configuration VM1" | Get-clusterOwnerNode

The owner node must have all cluster nodes.

Alternatively, open the Failover Cluster Manager (FCM) under roles, select the virtual machine like shown in the following screenshot. On the bottom tab, select Resource, right-click Virtual MachineVM1, select the Advanced Policies tab. Check that all nodes are selected. Do the same for "Virtual Machine Configuration VM1. Make sure the VM has the same virtual switch on all nodes.

Failed to get the network address for the destination node "Host2": A cluster Network isn't available for this operation. (0x000013AB)

Description

Live migration of "VM" failed.

Failed to get the network address for the destination node "Host2": A cluster Network isn't available for this operation. (0x000013AB).

Action

0x13ab 5035 ERROR_NETWORK_NOT_AVAILABLE

A cluster network isn't available for this operation. winerror.h

Resolution

Open Windows PowerShell with Run as administrator and run the following cmdlet:

Get-ClusterNetwork

Troubleshoot live migration issues - Windows Server (2)

Make sure the cluster network isn't configured and that Allow cluster network communication on this network is selected. For more information, see Configuring Network Prioritization on a Failover Cluster.

(Video) How to fix live migration problems in server 2012 R2 Cluster and Hyper V

Live migration failed with error code (0x8007271D)

Description

Live migration fails With (0x8007271D).

Action

As Win32 error code "0x271d"

0x271d 10013 WSAEACCES

An attempt was made to access a socket in a way forbidden by its access permissions.

Resolution

Here's how to fix this issue:

  1. Check Firewall settings and Antivirus exclusion.

  2. Check if TCP ports 6600 and 3343 (for clustering) are listening on both sides by running the following cmdlet:

    C:\>netstat -ano | findstr /I /C:"6600"

Failed to create partition: Insufficient system resources exist to complete the requested service. (0x800705AA)

Description

Live migration fails before 10%, quick migration fails during virtual machine online.

Action

Insufficient RAM in destination node

On the destination node, Hyper-V-Worker event: Failed to create partition: Insufficient system resources exist to complete the requested service. (0x800705AA)

Resolution

Reduce the memory assigned to the virtual machine or turn off some virtual machines on the destination node.

Failed to restore with Error " A virtual disk support provider for the specified file was not found." (0xC03A0014)

Description

Live migration of "VM" failed.

Virtual machine migration operation for "VM" failed at migration destination "HYP1."

"VM" Synthetic SCSI Controller: Failed to restore with Error "A virtual disk support provider for the specified file was not found." (0xC03A0014).

"VM": Attachment "C:\ClusterStorage\library\SW_DVD9_NTRL_SQL_Svr_Standard_Edtn_2019Dec2019_64Bit_English_OEM_VL_X22-22109.ISO" failed to open because of error: "A virtual disk support provider for the specified file was not found." (0xC03A0014).

Action

Need to remove the ISO.

0xc03a0014 -1069940716 ERROR_VIRTDISK_PROVIDER_NOT_FOUND

A virtual disk support provider for the specified file wasn't found.

Resolution

Check the VM setting under the DVD file, make sure the None option is selected as shown:

Troubleshoot live migration issues - Windows Server (3)

Live migration failed because "Test" failed at migration source "HOST3."

Description

Live migration of "VM" failed.

‎Virtual machine migration operation for "Test" failed at migration source "HOST3."

The Virtual Machine Management Service failed to establish a connection for a Virtual Machine migration with host "host2": No connection could be made because the target machine actively refused it. (0x8007274D)

Failed to send data for a Virtual Machine migration: An existing connection was forcibly closed by the remote host. (0x80072746)

Failed to establish a connection with host "S1": A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. (0x8007274C)

Action

0x274d 10061 WSAECONNREFUSED

No connection could be made because the target machine actively refused it

0x2746 10054 WSAECONNRESET

An existing connection was forcibly closed by the remote host.

Resolution

Check if the TCP ports 6600 and 3343 (for clustering) are listening on both sides by running the following cmdlet:

netstat -ano | findstr /I /C:"6600"

Check the cluster network metrics by running the following cmdlet:

Get-ClusterNetwork

For more information, see the following websites:

  • Network Recommendations for a Hyper-V Cluster in Windows Server 2012
  • Simplified SMB Multichannel and Multi-NIC Cluster Networks
  • A live migration of a virtual machine by using Virtual Machine Manager fails with error 0x8007274D

Live migration failed because the hardware on the destination computer isn't compatible with the hardware requirements of this virtual machine

Description

The virtual machine cannot be moved to the destination computer. The hardware on the destination computer isn't compatible with the hardware requirements of this virtual machine.

Action

Check the compatibility setup.

Resolution

(Video) Windows Server: Migration und Update einer alten Active Directory Domäne auf neuen Windows Server

Here's how to fix this issue:

  1. Open the Hyper-V Manager console and select Virtual Machine > Settings > Processor > Compatibility > OK.

    Troubleshoot live migration issues - Windows Server (4)

  2. Open Windows PowerShell with Run as administrator and run the following cmdlet:

     PS C:\> Set-VMProcessor TestVM -CompatibilityForMigrationEnabled $true 

Failed live migrate because "Virtual Machine Name" is using processor-specific features not supported on host "Node 1."

Description

Virtual machine "Virtual Machine Name" is using processor-specific features not supported on host "Node 1."

Action

To allow for migration of this virtual machine to a server with a different processor, modify the virtual machine settings to limit the processor features used by the virtual machine.

Resolution

Here's how to fix this issue:

  1. Check if the processor compatibility is flagged. Open the Hyper-V Manager console, select Virtual Machine Settings > Processor > Processor Compatibility.
  2. Make sure the BIOS of the host has the same settings.
  3. Make sure the Spectre or Meltdown patch exposes different features of the CPU. For more information, see Protecting guest virtual machines from CVE-2017-5715 (branch target injection).
  4. Run the Get-SpeculationControlSettings cmdlet and check the results. It should be the same on all nodes.

Live migration failed because "Virtual Machine Name" failed at migration source "Source Host Name"

Description

Virtual machine migration operation for "Virtual Machine Name" failed at migration source "Source Host Name"

Action

The Virtual Machine Management Service disabled the listener for Virtual Machine migration connections.

Resolution

Open a Command Prompt with Run as administrator and run the following cmdlet:

gpupdate /force

If the computer policy couldn't be updated successfully, you receive this error message:

The processing of Group Policy failed. Windows couldn't apply the registry-based policy settings for the Group Policy object LocalGPO. Group Policy settings won't be resolved until this event is resolved. View the event details for more information on the file name and path that caused the failure.

In this case, restore a backup or copy the GroupPolicy folder in the path C:\Windows\System32\ to the problematic server from a working server.

Live migration failed because "vm1" couldn't initialize memory: Ran out of memory (0x8007000E)

Description

Live migration of "Virtual Machine vm1" failed.

Virtual machine migration operation for "vm1" failed at migration destination "S2D1".

"vm1" could not initialize memory: Ran out of memory (0x8007000E).

Action

Performance issue.

Resolution

Check the available memory on the destination host.

Failed to establish a connection with host computer name: No credentials are available in the security package 0x8009030E

Description

Virtual machine migration operation failed at migration Source. Failed to establish a connection with host computer name: No credentials are available in the security package 0x8009030E.

Action

0x8009030e -2146893042 SEC_E_NO_CREDENTIALS

No credentials are available in the security package.

Resolution

Here's how to fix this issue:

Troubleshoot live migration issues - Windows Server (5)

See Live Migration via Constrained Delegation with Kerberos in Windows Server 2016 for details.

Failed to establish a connection with host "DESTINATION-SERVER": The credentials supplied to the package were not recognized (0x8009030D)

Description

Virtual machine migration Operation failed at migration source.

Failed to establish a connection with host "DESTINATION-SERVER": The credentials supplied to the package were not recognized (0x8009030D).

The Virtual Machine Management Service failed to authenticate the connection for a virtual machine migration at the source host: no suitable credentials available. Make sure the operation is initiated on the source host of the migration, or the source host is configured to use Kerberos for the authentication of migration connections and constrained delegation is enabled for the host in active directory.

Action

0x8009030d -2146893043 SEC_E_UNKNOWN_CREDENTIALS The credentials supplied to the package were not recognized.

Resolution

Here's how to fix this issue:

  1. Enable Kerberos Authentication for live migrations on both Hyper-V hosts. To do so, select Hyper-V Settings > Live Migrations > Advanced Features > Use Kerberos under Authentication Protocol.
  2. Set Constrained Delegation for both Hyper-V hosts by following these steps:
    1. Open Active Directory Users and Computers, find the Hyper-V host computer account. Open the Properties dialog, and select the Delegation tab.
    2. Select the Trust this computer for delegation to specified services only and Use any authentication protocol options.
    3. Select Add, and select the computer account of another Hyper-V host.
    4. Add cifs (required to migrate storage) and Microsoft Virtual System Migration Service (required to migrate virtual machine).

Wait up to 15 minutes for Keberos tickets to time out. Or run the KLIST PURGE -li 0x3e7 cmdlet.

Failed to create Planned Virtual Machine at migration destination: Logon failure

Description

Live migration of "Virtual Machine VM name" failed.

Failed to create Planned Virtual Machine at migration destination: Logon failure: the user has not been granted the requested logon type at this computer. (0x80070569)

Virtual machines running on Windows Server 2012 Hyper-V hosts may fail to start. And you may receive an error message that's similar to the following example:

(Video) Hyper-V Live Migration | Tutorial

Error 0x80070569 ("VM_NAME" failed to start worker process: Logon Failure: The user has not been granted the requested logon type at this computer.)

Action

0x569 1385 ERROR_LOGON_TYPE_NOT_GRANTED

Logon failure: the user has not been granted the requested logon type at this computer

Besides, when you perform a recovery checkpoint and try to convert it to a reference point by using the ConvertToReferencePoint method, the conversion may fail. You may receive an error message that's similar to the following example:

Failed to write VHD attachment "VHDX_NAME" to "VM_NAME": Account restrictions are preventing this user from signing in. For example, blank passwords aren't allowed, sign-in times are limited, or a policy restriction has been enforced. (0x8007052f)

0x52f 1327 ERROR_ACCOUNT_RESTRICTION Account restrictions are preventing this user from signing in. For example: blank passwords aren't allowed, sign-in times are limited, or a policy restriction has been enforced.

Resolution

For more information, see Starting or Live Migrating Hyper-V virtual machines may fail with error 0x80070569 on Windows Server 2012-based computers.

Failed to establish a connection for a Virtual Machine migration with host "HOST3": A connection attempt failed

Description

The Virtual Machine Management Service failed to establish a connection for a Virtual Machine migration with host "HOST3": A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. (0x8007274C).

Action

0x274c 10060 WSAETIMEDOUT

A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.

Resolution

Here's how to fix this issue:

  1. Check for various corruptions of the Registry.pol under the C:\Windows\System32\GroupPolicy\Machine path.
  2. Open the file in Notepad. It must start with the PReg signature.

Fail to live migrate because the target principal name is incorrect. (0x80090322)

Description

The Virtual Machine Management Service failed to establish a connection for a Virtual Machine migration with host "HOST5": The target principal name is incorrect. (0x80090322).

Action

Migration was cross-cluster but as per Live Migration Network order, the private Network was selected.

0x80090322 -2146893022 SEC_E_WRONG_PRINCIPAL

The target principal name is incorrect.

Resolution

Change the Live Migration Network order for cross-cluster and change it back after the migration.

Fail to live migrate because virtual machine migration operation for "VM01" failed at migration source "Node3"

Description

Live migration of "SCVMM VM01" failed

Virtual machine migration operation for "VM01" failed at migration source "Node3".

The Virtual Machine Management Service initiated the live migration of virtual machine "VM01" to destination host "Node11."

Action

NetApp storage

Failed to get last write time of file "<\\NetApp12\vol03\V01\Virtual Machines\D...17.VMRS>" with error 59! Returning cached write time.

Failed to read configuration data in binary format from stream.

HRESULT = 0x80048054

0x3b 59 ERROR_UNEXP_NET_ERR An unexpected network error occurred.

Resolution

Enable or disable oplocks and lease oplocks on a qtree. If oplocks and lease oplocks are enabled at the storage system level, enable or disable oplocks and lease oplocks on an individual qtree by running the respective cmdlets:

  • qtree oplocks qtree_name enable
  • qtree oplocks qtree_name disable

If the cifs.oplocks.enable option is set to On, the qtree oplocks cmdlet for a qtree takes effect immediately. If the cifs.oplocks.enable option is set to Off, the qtree oplocks command doesn't take effect until you change the option to On.

Here's how to fix this issue:

  1. Replace the NetApp filer with a Windows 2016 based File server. Alternatively, update the NetApp file to the latest Ontap 9.*. version.
  2. Make sure that the Windows Server 2016 based Hyper-V nodes are updated with the latest cumulative update. Similar issues are resolved after you applying CU Feb 2019 or a later version.

Failed live migration of 'Virtual Machine VM1' at migration source 'CLU8N1' with error codes 80042001 and 8007000D

Description

Live migration of 'Virtual Machine VM1' failed.

Virtual machine migration operation for 'VM1' failed at migration source 'CLU8N1'.

When running an SMB live migration between nodes in a Windows 2019 (RS5) Hyper-V cluster, a failure occurs on all VMs that point to a specific node:

Virtual machine migration operation for 'VM1' failed at migration source 'CLU8N1'.

Action

Filter error codes 80042001 and 8007000D on the VM name to collect VML traces on the source.

Under RS5, live migration through SMB of all the VMs to a specific node fails on the source because the HKLM\SYSTEM\CurrentControlSet\Control\ComputerName\ComputerName: ComputerName isn't in UPPERCASE.

Resolution

Make sure there's a REG_SZ value ComputerName with the name of the computer in UPPERCASE.

Event ID 20413

Description

(Video) Hyper V Live Migration Demo on Windows Server 2019

Live migration fails at 90%~100%, and quick migration fails during virtual machine configuration online.

Action

Nodes in cluster have different system drive letters assigned.

Resolution

On the destination node, the Hyper-V VMMS event displays the following error message:

The Virtual Machine Management Service failed to register the configuration for the virtual machine "<vmID>" at "<localpath>": The system cannot find the path.

Set all nodes to use the same system driver letter on the cluster.

Event ID 20417

Description

The Virtual Machine Management service successfully completed the live migration of virtual machine "VM" with an unexpectedly long blackout time of 63.1 seconds.

Action

The message comes from a lower performance network when you try the live migration.

Resolution

Make sure there's enough bandwidth available for the live migration.

Try to reduce the memory during the live migration. For more information, see Virtual Machine Live Migration Overview.

Event ID 21024

Description

Both live migration and quick migration succeeds, but virtual machine loses network connectivity after migration.

Action

Virtual machine loses network connectivity after migration even though network settings are configured correctly.

Resolution

Make sure the virtual machine network settings are correct.

Check if the source and destination virtual network are in the same subnet. If the aren't, run the ipconfig /renew cmdlet to resume the network connectivity. Alternatively, assign a new IP address to the virtual machine if a static IP address is used.

Event ID 21125

Description

Configuration setup for live migration failed on the destination node.

Action

Make sure that name of the virtual network is the same on the source and destination nodes and try the live migration again.

Resolution

Here's how to resolve this issue:

  1. Open the Hyper-V Manager console on the source and destination nodes.
  2. Select Virtual Network Manager.
  3. Verify if the virtual network names matched between source and destination nodes. Virtual switches must have the same name.
  4. Click OK to close the Virtual Network Manager window.
  5. Right-click the virtual machine on the source node and select Settings.
  6. Verify if the virtual machine is configured to use the correct virtual network.
  7. Click OK to close the Virtual Machine Settings window.
  8. Close the Hyper-V Manager console on the source and destination nodes.
  9. Open the Failover Cluster Manager console on the source node.
  10. Expand roles and then select the virtual machine.
  11. On the Actions pane, click More Actions > Refresh virtual machine configuration.
  12. Perform a live migration of the virtual machine on the destination node.

Event ID 21501

Description

Live migration of "VM" failed.

Virtual machine migration operation for "VM" failed at migration source "Host5."

Failed to perform migration on virtual machine "VM" because virtual machine migration limit "2" was reached, please wait for completion of an ongoing migration operation.

Action

Wait to finish other live migrations or increase the number of simultaneous live migrations.

Resolution

To fix this issue, open the Hyper-V Manager console, click Hyper-V Settings > Live Migrations > Simultaneous live migrations.

Note

Consider host performance when changing this number.

Data collection

Here's how to collect information before contacting Microsoft Support:

  1. Download TSS Windows CMD based universal Troubleshooting Script tool set on all nodes and unzip it in the C:\tss_tool folder.

  2. Open Command Prompt with Run as administrator and move it to the C:\tss_tool folder.

  3. Start the trace by running the cmdlet on the source and destination nodes.

    TSS rOn VML:verbose
  4. Perform the repro steps for the issue and follow instructions to stop the traces after that repro steps are completed.

    Note

    Collect the trace on both nodes.

  5. Download the psSDP tool to collect the logs from the source and destination nodes.

  6. Unzip the file and run the following cmdlet on both nodes:

    .\GetpsSDP.ps1 HyperV -localNodeOnly
  7. Collect all logs. zip and upload the collection on the workspace.

    (Video) How to do a live migration in Server 2012 R2 Failover Cluster Manager

FAQs

Under what conditions would live migration not work? ›

Live migration failed because a virtual switch used by the VM doesn't exist on the destination node "Host2" Live migration of VM failed. VM failed to live migrate because a virtual switch used by the VM doesn't exist on the destination node "Host2". The virtual switch must have the same name on all nodes.

What are the challenges in live migration of a VM? ›

Performance penalty of multitier applications during migration. Lack of security in live virtual machine migration along with lacking performance. Energy efficient scheduling of virtual machines in cloud data centers. Quality evaluation of Infrastructure-as-a-service models.

What are the two protocols that can be used by servers to authenticate live migration? ›

CredSSP and Kerberos authentication protocols are available in Hyper-V for live migration of VMs. If we enable the CredSSP authentication protocol, it avoids configuring constrained delegation, but it is required to sign in to the source server.

What are the important parameters affect VM migration performance? ›

However, the performance of VM migration is affected by VM size, running application's dirty rate and the number of migration iterations.

What is live migration 0x8007274C? ›

Live Migration Error 0x8007274C

This is a very common error in Live Migration that always traced to network problems. If the source and destination hosts are in the same cluster, start by running the Cluster Validation Wizard, only specifying the network tests. That might tell you right away what the problem is.

Which two factors are the primary items impacting the speed of a quick migration? ›

***The speed of the Quick Migration is dependent on how much memory needs to be written to disk and the speed of the network connection between the source and destination servers.

What are the main problems of migration? ›

Migration increased the slum areas in cities which increase many problems such as unhygienic conditions, crime, pollution etc. Sometimes migrants are exploited. Migration is one of the main causes of increasing nuclear family where children grow up without a wider family circle.

What are the 2 factors that affect the migration? ›

The push factors influencing migration involve conditions that force individuals to leave their homes. The push factors influencing migration can be categorized into economic, social and political factors. The economic factors influencing migration include lack of employment.

What are the four challenges to migration? ›

When they reach their destination they often face difficulties in accessing health care, housing, education or employment. They may become easy targets for abuse, extortion and exploitation due to a lack of a protective family network, a lack of information or missing documents.

What are 3 barriers to migration? ›

According to the report, there are three main potential future barriers to cross-border migration: pandemic-related border restrictions, automation and the changing nature of work which will affect the demand for migrant workers, and more restrictive national migration policies.

What are 4 barriers to migration? ›

Linguistic and cultural differences, housing transaction costs and a lack of portability of pension rights across countries are all potential obstacles to migration.

What is the best practice for doing migrations? ›

Keep these best practices to keep in mind when embarking on a data-migration initiative:
  • Determine the project's scope. ...
  • Ensure that the migration plan is compatible with existing policies. ...
  • Establish a migration time frame. ...
  • Validate and test data post-migration. ...
  • Audit and document every step of the process.

What authentication protocol does live migration use by default? ›

By default, Hyper-V hosts use CredSSP to authenticate with member of the cluster to run Live Migration. Microsoft chooses CredSSP by default because there is no further configuration to apply in order that Live Migration works.

What are the five 5 factors to remember when selecting a virtualization solution? ›

Five Factors to Remember when Selecting a Virtualization Solution
  • Hypervisor type. ...
  • Operating System rebooting. ...
  • Virtualization Method. ...
  • Deployment work. ...
  • Multiprocessing.
Jun 5, 2012

How can I improve my VM performance? ›

To recap, you can maximise VM performance with the following tips:
  1. Know the difference between your host PC and the guest environment.
  2. Be aware of resource requirements.
  3. Keep the OS updated.
  4. Keep the VM software updated.
  5. Install VM tools for enhanced accessibility.
  6. Set up a share between VM and your host system.
Oct 31, 2019

What are the two ways in which virtual server migration can occur? ›

You can move the virtual machine to another compute resource by using cold or hot migration.

What are the 4 types of migration factors? ›

internal migration: moving within a state, country, or continent. external migration: moving to a different state, country, or continent. emigration: leaving one country to move to another. immigration: moving into a new country.

What is a requirement for live migration? ›

Common requirements for any form of live migration: Two (or more) servers running Hyper-V that: Support hardware virtualization. Use processors from the same manufacturer.

What are the 7 types of migration? ›

There are different types of migration such as counter-urbanization, emigration, immigration, internal migration, international migration and rural-urban migration.

What is the difference between quick migration and live migration? ›

The only difference between 'Quick Storage Migration' and 'Live Migration' is that the first one moves virtual machine storage from one location to another location and later one is capable of moving virtual machine along with the storage from one node to another node in the cluster.

What are three general causes of migration? ›

What are the three general causes of migration? environmental causes, economic causes, political causes.

Which is the first stage of live migration? ›

In live migration, the static part (not changing or having any active write operation) of the VM is transferred first while VM keeps running on the source server. Then VM is suspended and the remaining part is transferred.

How do you address migration issues? ›

Here are a few recommendations based on IOM's Migration Governance Framework: Countries should promote stability, education and employment opportunities and reduce the drivers of forced migration, including by promoting resilience, thereby enabling individuals to make the choice between staying or migrating.

What are the 5 causes of migration? ›

What are the 5 factors that influence migration? The major factors influencing migration are economic factors, demographic factors, socio-cultural factors, political factors, and miscellaneous factors.

What are 6 pull factors of migration? ›

Pull Factors of Migration
  • Agricultural Geography.
  • Cultural Geography.
  • Economic Geography.
  • Introduction to Human Geography.
  • Political Geography.
  • Population Geography.
  • Urban Geography.

What are the 10 causes of migration? ›

The causes of migration may be numerous and these may range from natural calamities, climatic change, epidemics, and drought to social, economic, cultural and political. The overpopulation and heavy pressure on resources may be the cause of permanent or temporary, and long distance or short distance migration.

What are the 5 effects of migration? ›

What are the impacts of migration on the destination location?
  • Workers will work for low wages and are prepared to do jobs that local people do not want.
  • Increased cultural diversity.
  • Skills gaps are filled.
  • Boost to the local economy.
  • Government tax revenues increase.

What are the typical challenges of data migration? ›

Here are the “8 data migration hurdles” to steer clear of.
  • Poor Knowledge of Source Data. ...
  • Underestimating Data Analysis. ...
  • Lack of Integrated Processes. ...
  • Failure to Validate the Implementation. ...
  • Late Evaluation of the Final Results. ...
  • Lack of Collaboration. ...
  • Inappropriate use of Expertise.

What are the 5 types of migration? ›

What are the types of migration?
  • Internal migration: moving within a state, country, or continent.
  • External migration: moving to a different state, country, or continent.
  • Emigration: leaving one place to move to another.
  • Immigration: moving into a new place.
  • Return migration: moving back to where you came from.

What are the 3 drivers of migration? ›

Drivers of migration include economic, demographic factors and environmental factors, and social and political dynamics.

What are 5 pull and push factors that can cause migration? ›

Examples of push factors include war, political instability, famine, and drought, among others. Examples of pull factors include political stability, lots of jobs, natural resources, better learning institutions, and better climate.

What are the 6 R's of migration? ›

Amazon Web Services (AWS) adopted this model and extended it to the 6 R's: Re-host, Re-platform, Re-factor/Re-architect, Re-purchase, Retire and Retain. This post covers the basics for each of these and explains how to decide which AWS migration strategy to choose for your applications.

What are the two common migration strategies? ›

6 Common Application Migration Strategies
  • Rehosting. Many refer to this as a “lift and shift” approach. ...
  • Replatforming. ...
  • Repurchasing. ...
  • Refactoring / Re-architecting. ...
  • Retire. ...
  • Retain.
Nov 9, 2017

What is the difference between live migration CredSSP and Kerberos? ›

CredSSP has a single hop limitation, meaning it is able to pass the administrator's credentials to a remote system, but the credentials cannot be passed any further. Kerberos does not have this limitation, meaning the administrator's credentials can be passed across multiple servers if necessary.

What are the steps involved in live VM migration? ›

Some phases are optional, and others are unavailable during cloud-to-cloud migrations.
  • Full migration. The full migration operation moves VMs in one step from source to target. ...
  • Run-in-cloud. ...
  • Storage migration. ...
  • Prepare to detach. ...
  • Detach. ...
  • Cleanup. ...
  • Move back. ...
  • Test clone.

Which system tools is used to migrate files? ›

The Top Data Migration Tools
  • Data Migration Tools: Hevo Data.
  • Data Migration Tools: Fivetran.
  • Data Migration Tools: Matillion.
  • Data Migration Tools: Stitch Data.
  • Data Migration Tools: AWS Data Pipeline.
  • Data Migration Tools: Integrate.io.
  • Data Migration Tools: IBM Informix.
  • Data Migration Tools: Azure DocumentDB.
Jan 11, 2023

What are the three stages of migration? ›

The first stage is pre-migration, involving the decision and preparation to move. The second stage, migration, is the physical relocation of individuals from one place to another. The third stage, postmigration, is defined as the "absorption of the immigrant within the social and cultural framework of the new society".

What are the three main server types? ›

There are many types of servers, including web servers, mail servers, and virtual servers.

What are the most common virtualization problems *? ›

Organizations often have to deal with virtualization problems such as VM sprawl, network congestion, server hardware failures, reduced VM performance and software licensing restrictions. But companies can mitigate these issues before they occur with lifecycle management tools and business policies.

What are the two major virtualization challenges? ›

Depleted resources—performance and availability suffer

Performance issues—often created by a move from physical hardware to virtual hardware—and VM saturation cause application networking resources to be depleted at a much faster rate. I/O intensive operations get bogged down in the virtualization translation layer.

What are the 3 virtualization techniques? ›

In order to do that, three basic virtualization techniques for embedded systems are considered: full virtualization, paravirtualization (as instances of hardware-level virtualization), and containers (as an instance of operating-system-level virtualization).

How do I troubleshoot virtual machine performance issues? ›

Work through each troubleshooting step in order, and do not skip a step.
  1. Verify that the reduced performance is unexpected behavior. ...
  2. Verify that you are running the most recent version of the VMware product being used. ...
  3. Check that VMware Tools is installed in the virtual machine and running the correct version.
Sep 26, 2022

How do you fix a VM slowness issue? ›

How to Fix VMware Virtual Machine Slow Performance Issues in 3...
  1. Solution 1. Add a SSD to VM.
  2. Solution 2. disable system visual effects.
  3. Solution 3. Optimize VM Physical memory usage.
  4. Backup VM to protect the data.
Aug 20, 2022

Which tools would you use to troubleshoot a VM performance issue? ›

The performance diagnostics tool helps you troubleshoot performance issues that can affect a Windows or Linux virtual machine (VM).

What are the 2 main causes of migration? ›

Some people move in search of work or economic opportunities, to join family, or to study. Others move to escape conflict, persecution, terrorism, or human rights violations. Still others move in response to the adverse effects of climate change, natural disasters, or other environmental factors.

In which two scenarios is an automated live migration likely to occur? ›

Live migration is usually performed when a physical host machine (computer or server) needs maintenance or an update, or when a VM must be switched to a different host.

How many steps are there in migration? ›

Phase 1: Prepare. Phase 2: Plan. Phase 3: Migrate. Phase 4: Operate and optimize.

What are four factors that affected migration? ›

They are economic factors, demographic factors, socio-cultural factors, political factors and miscellaneous factors.

What are the three negative effects of migration? ›

Negatives impacts:
  • Pressure on public services such as schools, housing and healthcare;
  • Overcrowding;
  • Language and cultural barriers can exist;
  • Increased level of pollution;
  • Increased pressure on natural resources;
  • Racial tensions and discrimination;
  • Gender imbalance – usually more men migrate.
Dec 1, 2022

What are the factors to be considered before migration? ›

Factors to Consider Before Cloud Migration
  • Migration Architecture. The first step before migrating to the cloud is building a robust migration architecture. ...
  • Cloud Platform Assessment. ...
  • Total Cost. ...
  • Cloud Provider. ...
  • Security.
May 21, 2021

Videos

1. Migration auf Windows Server 2022
(Manfred Helber)
2. What's New in PostgreSQL 15?
(EDB)
3. No Down Time Live Migration of a Windows Server
(AltoSpheric Youtube)
4. Configure Hyper-V Virtual Machine Live Migration in Windows Server 2016 in Hindi by SHIVBKS
(Shivendra Singh)
5. Windows Server 2012 R2 Hyper-V Live Migration
(Microsoft SmartHQ)
6. 06. Live migration in Hyper-V Server 2019
(Learn Microsoft)

References

Top Articles
Latest Posts
Article information

Author: Kareem Mueller DO

Last Updated: 05/09/2023

Views: 5727

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Kareem Mueller DO

Birthday: 1997-01-04

Address: Apt. 156 12935 Runolfsdottir Mission, Greenfort, MN 74384-6749

Phone: +16704982844747

Job: Corporate Administration Planner

Hobby: Mountain biking, Jewelry making, Stone skipping, Lacemaking, Knife making, Scrapbooking, Letterboxing

Introduction: My name is Kareem Mueller DO, I am a vivacious, super, thoughtful, excited, handsome, beautiful, combative person who loves writing and wants to share my knowledge and understanding with you.