XAPI Command Line Interface

From Xen
(Redirected from XCP Command Line Interface)


XAPI Command Line Interface

XE Basics

The XAPI toolstack includes a powerful command-line interface "xe" which talks to both hosts and Resource Pools over https, invoking XenAPI operations over XMLRPC. Commands may be issued both from within domain zero (xe is on the $PATH by default) and from remote hosts. For users of the bash shell extensive tab completion is available, greatly increasing usability. Please refer to the "Xen Cloud Platform Administrator Guide", chapter 8 on page 123 for more information and details on each of the xe commands.

For installing the 'xe' CLI on another Linux box, see XCP Install CLI

Basic xe Syntax

When run from domain zero:

xe <command-name> <argument=value>*

When run from another host:

xe -s <host> -u <username> -pw <password> <command-name> <argument=value>*

Note:

  • With any command, hitting the "Tab" key on a keyboard will list out any options available for a particular command as well as complete command syntax. Values containing spaces should be enclosed with double-quotes.

Common Commands

List CD/ISO

 #xe cd-list 

Power on VM

 #xe vm-start vm=<target VM name> 

Mount an ISO

 #xe vm-cd-insert cd-name=<name of ISO or CD> vm=<target VM name> 

Show list of VMs on host

 #xe vm-list 

List SRs

 #xe sr-list 

Delete/Destroy VM on host

 #xe vm-destroy uuid=<UUID of target VM> 

Create Storage Repository

 #xe sr-create name-label=<name> physical-size=<size> type=<type> content-type=<content_type> device-config:<config_name>=<value> [host-uuid=<Xen Cloud Platform host UUID>] [shared=<true | false>] 

Destroy Storage Repository

 #xe sr-destroy uuid=<sr_uuid> 

Common Host (Xen Cloud Platform host) Commands

List Host in Pool

 #xe host-list 

Enable a Xen Cloud Platform Host

 #xe host-enable [<host-selector>=<host_selector_value>...] 

Reboot a Xen Cloud Platform Host

 #xe host-reboot [<host-selector>=<host_selector_value>...] 

Shutdown a Xen Cloud Platform Host

 #xe host-shutdown [<host-selector>=<host_selector_value>...] 

Virtual Machine Examples

This is a simple overview of a two easy was to get a Xen Cloud Platform host up and running with a virtual machine. Two examples will be provided:

  1. Debian Lenny 5.0 VM: Install and configure a Debian based VM using a network repository leveraging the xe command line interface.
  2. General VM: Install and configure a VM leveraging the local CDRom of the host and the xe commend line interface.

Debian Lenny 5.0 Example

Icon Ambox.png This example needs fixing as a) Lenny is not supported any more and b) the ftp path is wrong. See [1]. The following appears to work for Squeeze:
#xe vm-install template=Debian\ Squeeze\ 6.0\ \(32-bit\) new-name-label=myVM
#xe vm-param-set uuid=f4eb1c90-104d-2799-4dcb-460bda88d7f0 other-config:install-repository=http://ftp.debian.org/debian/
#xe vif-create network-uuid=f7a15534-ec1d-ca62-013c-38df645fa706 vm-uuid=f4eb1c90-104d-2799-4dcb-460bda88d7f0 device=0
#xe vm-start vm=myVM
#xl console myVM]
  • Import lenny.xva to your Xen Cloud Platform host:
#xe vm-import filename=lenny.xva
  • Create a VM based on the Lenny template:
#xe vm-install template=Debian\ Lenny\ 5.0 new-name-label=<name of VM>
Note the UUID output.

  • Set other-config to point to your Debian repository:
# xe vm-param-set uuid=<uuid of new VM> other-config:install-repository=http://ftp.debian.org/
  • Identify the target network interface.
#xe network-list
Note the uuid of xenbr desired for use (xenbr corresponds to NIC)

  • Add a VIF on an appropriate network:
#xe vif-create network-uuid=<network uuid from above>  vm-uuid=<uuid of new VM> device=0
Note the uuid output of the new VIF.

  • Start the VM, then go to its console and the Debian installer should be running and ready to install on the guest.
# xe vm-start vm=<name of VM>

General VM Example

  • Create a VM based on a base template:
# xe vm-install template=<name of target template> new-name-label=<name of  VM>
Note the UUID output.

  • Identify the target network interface.
#xe network-list
Note the uuid of xenbr desired for use

  • Add a VIF on an appropriate network (use xe network-list to find the list of networks):
#xe vif-create network-uuid=<network uuid from above>  vm-uuid=<uuid of new VM> device=0
Note the uuid output of the new VIF.

  • View the CD list attached the host
# xe cd-list
Note the name label

  • Add a new virtual CD to the selected VM
# xe vm-cd-add cd-name=<CDRom name label> vm=<name of new VM> device=<integer not used>
  • Lists CDs attached to the specified VMs.
#xe vm-cd-list vm=<name of new VM>
  • Start the VM, then go to its console and the CD based OS installer should be running and ready to install on the guest.
# xe vm-start uuid=<uuid of new VM>

Developer XAPI Viewer (with Console)

The Developer XAPI view tool is a simple way to view the various XAPI commands in a simple GUI, but also do things like:

  • Start a virtual machine
  • Connect to a virtual machine via a Java console
  • Shutdown a virtual machine

Start a Virtual Machine

  1. Open up a web browser.
    • Firefox 3.5.3 and Java 6 Update 15 (build 1.6.0_15-b03)
    • Chrome 3.0.195.27 and Java 6 Update 15 (build 1.6.0_15-b03)
  2. Type the IP of your host into the URL bar and connect.
  3. Type in the user name and password of your XAPI host connection.
  4. The list of XenAPI classes will appear.
  5. Click on the "Console" class and your list of running virtual machines will appear.
  6. Click on the target virtual machine and virtual machine properties will appear.
  7. Click on "Start" to boot the virtual machine.

Console Connections

  1. Open up a web browser.
    • Firefox 3.5.3 and Java 6 Update 15 (build 1.6.0_15-b03)
    • Chrome 3.0.195.27 and Java 6 Update 15 (build 1.6.0_15-b03)
  2. Type the IP of your host into the URL bar and connect.
  3. Type in the user name and password of your XAPI host connection.
  4. The list of XenAPI classes will appear.
  5. Click on the "Console" class and your list of running virtual machines will appear.
  6. Click on the target virtual machine and the console windows will open (requires Java).
  7. Click "Undock" to get a better console view of the virtual machine.

Shutdown/Restart Options for a Virtual Machine

  1. Open up a web browser.
    • Firefox 3.5.3 and Java 6 Update 15 (build 1.6.0_15-b03)
    • Chrome 3.0.195.27 and Java 6 Update 15 (build 1.6.0_15-b03)
  2. Type the IP of your host into the URL bar and connect.
  3. Type in the user name and password of your XAPI host connection.
  4. The list of XenAPI classes will appear.
  5. Click on the "Console" class and your list of running virtual machines will appear.
  6. Click on the target virtual machine and virtual machine properties will appear.
  7. Click on any of the following options
    • clean_reboot to reboot the virtual machine properly leveraging the underlying operating system. This requires the VM to have the PV drivers/ guest tools installed.
    • clean_shutdown to shutdown reboot the virtual machine properly leveraging the underlying operating system. This requires the VM to have the PV drivers/ guest tools installed.
    • hard_reboot to force reboot the virtual machine.
    • hard_shutdown to force shutdown reboot the virtual machine.

Install the PV Drivers on a Windows Virtual Machine

  • Log onto the host console (e.g. via ssh)
  • Run the following xe command:
# xe vm-cd-eject vm=<target VM name>
# xe vm-cd-insert cd-name=xs-tools.iso vm=<target VM name>
NOTE: VM can be either off or booted.

  • Install the PV Drivers leveraging the console feature available in the XAPI Viewer tool.