Manage VM in console

From vpsget wiki
Revision as of 17:15, 29 March 2013 by Vq (talk | contribs)
Jump to: navigation, search

Notice: 101 is taken as a sample vmID which should be altered with actual vmID.

KVM

Show all Virtual Machines (logical volumes):

lvdisplay

Show state of Virtual Machines:

virsh list --all

Soft shutdown VM. This will sent shutdown command to VMs OS.

virsh shutdown kvm101

Soft reboot VM

virsh reboot kvm101

Hard power off. This will be equal to unplugging power cord from physical machine.

virsh destroy kvm101

Hard power on

virsh start kvm101

For extended description refer to man virsh.

OpenVZ

Show all OpenVZ containers:

vzlist -a

Stop container:

vzctl stop 101

Srart container:

vzctl start 101

Restart container:

vzctl restart 101

Create container:

vzctl create 101

Remove container:

vzctl destroy

For extended description refer to man vzctl. ""