Managing Controller VM with Virsh

“Nutanix Controller VM (CVM) is what runs the Nutanix software and serves all of the I/O operations for the hypervisor and all VMs running on that host.” Nutanix-bible.

The Controller VM recourses are shown under the VM page In the Nutanix Prism, but you will not be able to change the resources configuration, unless you connected to the Acropolis hypervisor (Host) and modified the configurations using virsh.

“virsh: is a command line interface tool for managing guests and the hypervisor.” Centos.org.
First you can review the settings of the CVM under the VM Page on Prism.

image1


image2


Connect to the Acropolis hypervisor (Host) using the root account with password “nutanix/4u”

image3
Displays information about the host > virsh nodeinfo

image4

Lists all the VMs on a host > virsh list –all

image5

Displays information about a VM > virsh dominfo VM_Name

image6

Displays information about the vCPU > virsh vcpuinfo VM_Name

image7

Sets the number of virtual processors > virsh setvcpus VM_name count

Note: The count value cannot exceed the number of processors specified for the guest”

image8

You can increase the number of processors by editing the virsh XML configuration file > virsh edit VM_Name

Ø Change from command mode to insert mode by typing <i>.

Ø Use the arrow keys to move to line “vcpu placement”, increase the value as required.

Ø Go back to command mode by pressing <Esc>.

Ø Save and exit by Typing <:wq>

image9

image10

Allocates memory for a guest > virsh setmem VM_Name count

You must specify the [count] in kilobytes. The new count value cannot exceed the amount you specified when you created the guest. A higher maximum memory value will not affect the active guest unless the new value is lower which will shrink the available memory usage.

image11

image12

image13

Sets the maximum memory limit for a guest > virsh setmaxmem VM_Name

image14

image15
Shutdown the VM > virsh shutdown VM_Name

image16

image17

Starts an inactive VM > virsh start VM_Name

image18

Restarts the VM > virsh reboot VM_Name

No comments:

Post a Comment