summaryrefslogtreecommitdiff
path: root/docs/drvvirtuozzo.rst
blob: fbb6ab0e71c4cebf1708aac568c9ebb912b74c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
================
Virtuozzo driver
================

The libvirt vz driver can manage Virtuozzo starting from version 6.0.

Project Links
-------------

-  The `Virtuozzo <https://www.virtuozzo.com/>`__ Solution.

Connections to the Virtuozzo driver
-----------------------------------

The libvirt Virtuozzo driver is a single-instance privileged driver, with a
driver name of 'virtuozzo'. Some example connection URIs for the libvirt driver
are:

::

   vz:///system                     (local access)
   vz+unix:///system                (local access)
   vz://example.com/system          (remote access, TLS/x509)
   vz+tcp://example.com/system      (remote access, SASl/Kerberos)
   vz+ssh://root@example.com/system (remote access, SSH tunnelled)

Example guest domain XML configuration
--------------------------------------

Virtuozzo driver require at least one hard disk for new domains at this time. It
is used for defining directory, where VM should be created.

::

   <domain type='vz'>
     <name>demo</name>
     <uuid>54cdecad-4492-4e31-a209-33cc21d64057</uuid>
     <description>some description</description>
     <memory unit='KiB'>1048576</memory>
     <currentMemory unit='KiB'>1048576</currentMemory>
     <vcpu placement='static'>2</vcpu>
     <os>
       <type arch='x86_64'>hvm</type>
     </os>
     <clock offset='utc'/>
     <on_poweroff>destroy</on_poweroff>
     <on_reboot>destroy</on_reboot>
     <on_crash>destroy</on_crash>
     <devices>
       <disk type='file' device='disk'>
         <source file='/storage/vol1'/>
         <target dev='hda'/>
       </disk>
       <video>
         <model type='vga' vram='33554432' heads='1'>
           <acceleration accel3d='no' accel2d='no'/>
         </model>
       </video>
     </devices>
   </domain>