Este conteúdo não está disponível no idioma selecionado.
10.4. Rebooting Compute Nodes
Reboot each Compute node individually and ensure zero downtime of instances in your OpenStack Platform environment. This involves the following workflow:
- Select a Compute node to reboot
- Migrate its instances to another Compute node
- Reboot the empty Compute node
From the undercloud, list all Compute nodes and their UUIDs:
source ~/stackrc nova list | grep "compute"
$ source ~/stackrc
$ nova list | grep "compute"
Select a Compute node to reboot and first migrate its instances using the following process:
- From the undercloud, select a Compute Node to reboot and disable it:
source ~/overcloudrc nova service-list nova service-disable [hostname] nova-compute
$ source ~/overcloudrc $ nova service-list $ nova service-disable [hostname] nova-compute
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - List all instances on the Compute node:
nova list --host [hostname]
$ nova list --host [hostname]
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Select a second Compute Node to act as the target host for migrating instances. This host needs enough resources to host the migrated instances. From the undercloud, migrate each instance from the disabled host to the target host.
nova live-migration [instance-name] [target-hostname] nova migration-list nova resize-confirm [instance-name]
$ nova live-migration [instance-name] [target-hostname] $ nova migration-list $ nova resize-confirm [instance-name]
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Repeat this step until you have migrated all instances from the Compute Node.
Important
For full instructions on configuring and migrating instances, see Section 8.9, “Migrating VMs from an Overcloud Compute Node”.
Reboot the Compute node using the following process
- Log into the Compute Node and reboot it:
sudo reboot
$ sudo reboot
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Wait until the node boots.
- Enable the Compute Node again:
source ~/overcloudrc nova service-enable [hostname] nova-compute
$ source ~/overcloudrc $ nova service-enable [hostname] nova-compute
Copy to Clipboard Copied! Toggle word wrap Toggle overflow - Select the next node to reboot.