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