2013-05-03 15:25:37 +01:00
<?xml version="1.0" encoding="UTF-8"?>
2017-07-26 18:01:25 +01:00
<!DOCTYPE html>
2013-05-03 15:25:37 +01:00
<html xmlns= "http://www.w3.org/1999/xhtml" >
<body>
2015-08-22 00:43:48 +03:00
<h1> Virtuozzo driver</h1>
2012-07-31 22:56:05 +04:00
<ul id= "toc" ></ul>
<p>
2015-08-22 00:43:48 +03:00
The libvirt vz driver can manage Virtuozzo starting from version 6.0.
2012-07-31 22:56:05 +04:00
</p>
2017-07-26 15:52:42 +01:00
<h2><a id= "project" > Project Links</a></h2>
2012-07-31 22:56:05 +04:00
<ul>
<li>
2015-08-22 00:43:48 +03:00
The <a href= "http://www.odin.com/products/virtuozzo/" > Virtuozzo</a> Solution.
2012-07-31 22:56:05 +04:00
</li>
</ul>
2017-07-26 15:52:42 +01:00
<h2><a id= "uri" > Connections to the Virtuozzo driver</a></h2>
2012-07-31 22:56:05 +04:00
<p>
2015-08-22 00:43:48 +03:00
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:
2012-07-31 22:56:05 +04:00
</p>
<pre>
2015-08-22 00:43:48 +03:00
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)
2012-07-31 22:56:05 +04:00
</pre>
2012-08-13 19:50:14 +04:00
2017-07-26 15:52:42 +01:00
<h2><a id= "example" > Example guest domain XML configuration</a></h2>
2012-08-13 19:50:14 +04:00
<p>
2015-08-22 00:43:48 +03:00
Virtuozzo driver require at least one hard disk for new domains
2012-08-13 19:50:14 +04:00
at this time. It is used for defining directory, where VM should
be created.
</p>
<pre>
2015-08-22 00:43:48 +03:00
< domain type='vz'>
2012-08-13 19:50:14 +04:00
< 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>
</pre>
2012-07-31 22:56:05 +04:00
</body></html>