backup: Wire up qemu full pull backup commands over QMP
[libvirt/ericb.git] / docs / drvvirtuozzo.html.in
blob8813d00ad83a815ee560f288741a2b8464b2df43
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html>
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <body>
5 <h1>Virtuozzo driver</h1>
6 <ul id="toc"></ul>
7 <p>
8 The libvirt vz driver can manage Virtuozzo starting from version 6.0.
9 </p>
12 <h2><a id="project">Project Links</a></h2>
13 <ul>
14 <li>
15 The <a href="http://www.odin.com/products/virtuozzo/">Virtuozzo</a> Solution.
16 </li>
17 </ul>
20 <h2><a id="uri">Connections to the Virtuozzo driver</a></h2>
21 <p>
22 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:
23 </p>
24 <pre>
25 vz:///system (local access)
26 vz+unix:///system (local access)
27 vz://example.com/system (remote access, TLS/x509)
28 vz+tcp://example.com/system (remote access, SASl/Kerberos)
29 vz+ssh://root@example.com/system (remote access, SSH tunnelled)
30 </pre>
32 <h2><a id="example">Example guest domain XML configuration</a></h2>
34 <p>
35 Virtuozzo driver require at least one hard disk for new domains
36 at this time. It is used for defining directory, where VM should
37 be created.
38 </p>
40 <pre>
41 &lt;domain type='vz'&gt;
42 &lt;name&gt;demo&lt;/name&gt;
43 &lt;uuid&gt;54cdecad-4492-4e31-a209-33cc21d64057&lt;/uuid&gt;
44 &lt;description&gt;some description&lt;/description&gt;
45 &lt;memory unit='KiB'&gt;1048576&lt;/memory&gt;
46 &lt;currentMemory unit='KiB'&gt;1048576&lt;/currentMemory&gt;
47 &lt;vcpu placement='static'&gt;2&lt;/vcpu&gt;
48 &lt;os&gt;
49 &lt;type arch='x86_64'&gt;hvm&lt;/type&gt;
50 &lt;/os&gt;
51 &lt;clock offset='utc'/&gt;
52 &lt;on_poweroff&gt;destroy&lt;/on_poweroff&gt;
53 &lt;on_reboot&gt;destroy&lt;/on_reboot&gt;
54 &lt;on_crash&gt;destroy&lt;/on_crash&gt;
55 &lt;devices&gt;
56 &lt;disk type='file' device='disk'&gt;
57 &lt;source file='/storage/vol1'/&gt;
58 &lt;target dev='hda'/&gt;
59 &lt;/disk&gt;
60 &lt;video&gt;
61 &lt;model type='vga' vram='33554432' heads='1'&gt;
62 &lt;acceleration accel3d='no' accel2d='no'/&gt;
63 &lt;/model&gt;
64 &lt;/video&gt;
65 &lt;/devices&gt;
66 &lt;/domain&gt;
68 </pre>
70 </body></html>