Nutanix - Node Reboot: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
(Created page with "==Nutanix - Node Reboot== Connect to #:<tt>'''<cluster>'''</tt> CVM #:<tt>'''ssh nutanix@<cluster>.excellus.com Verify host and CVM IP addresses #:<tt>'''host.list'''</tt> G...")
 
Line 1: Line 1:
==Nutanix - Node Reboot==
==Nutanix - Node Reboot==
Connect to #:<tt>'''<cluster>'''</tt> CVM
Connect to <tt>'''<cluster>'''</tt> CVM
#:<tt>'''ssh nutanix@<cluster>.excellus.com
#:<tt>'''ssh nutanix@<cluster>.excellus.com


Line 6: Line 6:
#:<tt>'''host.list'''</tt>
#:<tt>'''host.list'''</tt>


Gather list of VMs that are running on #:<tt>'''<host>'''</tt>
Gather list of VMs that are running on <tt>'''<host>'''</tt>
#:<tt>'''acli host.list_vms <host_ip_address>'''</tt>
#:<tt>'''acli host.list_vms <host_ip_address>'''</tt>


Line 15: Line 15:
#:<tt>'''acli host.list_vms <host_ip_address>'''</tt>
#:<tt>'''acli host.list_vms <host_ip_address>'''</tt>


Shutdown the CVM on #:<tt>'''<host>'''</tt>
Shutdown the CVM on <tt>'''<host>'''</tt>
#:<tt>'''ssh <cvm_ip_address>'''</tt>
#:<tt>'''ssh <cvm_ip_address>'''</tt>
#:<tt>'''cvm_shutdown -P now'''</tt>
#:<tt>'''cvm_shutdown -P now'''</tt>


Connect to node #:<tt>'''<host>'''</tt> & reboot
Connect to node <tt>'''<host>'''</tt> & reboot
#:<tt>'''ssh root@<host_ip_address>'''</tt>
#:<tt>'''ssh root@<host_ip_address>'''</tt>
#:<tt>'''shutdown -r now'''</tt>
#:<tt>'''shutdown -r now'''</tt>

Revision as of 14:40, 29 January 2022

Nutanix - Node Reboot

Connect to <cluster> CVM

  1. ssh nutanix@<cluster>.excellus.com

Verify host and CVM IP addresses

  1. host.list

Gather list of VMs that are running on <host>

  1. acli host.list_vms <host_ip_address>

Put <host> in maintenace mode, this will live-migrate all running VMs to other nodes

  1. acli host.enter_maintenance_mode <host_ip_address> wait=true

Verify VMs have moved off host

  1. acli host.list_vms <host_ip_address>

Shutdown the CVM on <host>

  1. ssh <cvm_ip_address>
    cvm_shutdown -P now

Connect to node <host> & reboot

  1. ssh root@<host_ip_address>
    shutdown -r now

Monitor the host boot process from the IPMI

  1. https://<IPMI_ip_address>
    Click: System Tab
    Click: Remove Console Preview

Once node has completed reboot and is running, exit maintenance mode. All VMs will live-migrate back to this node

  1. host.exit_maintenance_mode <host_ip_address> wait=true

Verify MVs are returning to original host

  1. acli host.list_vms <host_ip_address>