This patch changes the name of the Admin-Guide from the Cloud Admin Guide to the Administrator guide. This affects the filename in the repository, and references to cloud administrators within the document texts. 1.) Changing instances of 'cloud administrator' to 'administrator'. 2.) Change links from '/admin-guide-cloud/' to '/admin-guide/' within the Admin Guide. 3.) Adjust .htaccess file. Change-Id: I7f21a710e922981aa295afc0616de36fd819b523 Implements: blueprint user-guides-reorganised
2.7 KiB
Migrate a single instance to another compute host
When you want to move an instance from one compute host to another,
you can use the nova migrate
command. The scheduler chooses the
destination compute host based on its settings. This process does not
assume that the instance has shared storage available on the target
host. If you are using SSH tunneling, you must ensure that each node is
configured with SSH key authentication so that the Compute service can
use SSH to move disks to other nodes. For more information, see clinovamigratecfgssh
.
To list the VMs you want to migrate, run:
$ nova list
After selecting a VM from the list, run this command where
VM_ID
is set to the ID in the list returned in the previous step:$ nova show VM_ID
Use the
nova migrate
command.$ nova migrate VM_ID
To migrate an instance and watch the status, use this example script:
#!/bin/bash # Provide usage usage() { echo "Usage: $0 VM_ID" exit 1 } [[ $# -eq 0 ]] && usage # Migrate the VM to an alternate hypervisor echo -n "Migrating instance to alternate host" VM_ID=$1 nova migrate $VM_ID VM_OUTPUT=`nova show $VM_ID` VM_STATUS=`echo "$VM_OUTPUT" | grep status | awk '{print $4}'` while [[ "$VM_STATUS" != "VERIFY_RESIZE" ]]; do echo -n "." sleep 2 VM_OUTPUT=`nova show $VM_ID` VM_STATUS=`echo "$VM_OUTPUT" | grep status | awk '{print $4}'` done nova resize-confirm $VM_ID echo " instance migrated and resized." echo; # Show the details for the VM echo "Updated instance details:" nova show $VM_ID # Pause to allow users to examine VM details read -p "Pausing, press <enter> to exit."
Note
If you see this error, it means you are either trying the command
with the wrong credentials, such as a non-admin user, or the
policy.json
file prevents migration for your user:
ERROR (Forbidden): Policy doesn't allow compute_extension:admin_actions:migrate to be performed. (HTTP 403)
Note
If you see an error similar to this message, SSH tunneling was not set up between the compute nodes:
ProcessExecutionError: Unexpected error while running command.
Stderr: u Host key verification failed.\r\n
The instance is booted from a new host, but preserves its configuration including its ID, name, any metadata, IP address, and other properties.