[libvirt] [libvirt-php] libvirt_domain_new Create a slow vm

Mario Di Ture mario.diture at unicas.it
Mon Jun 2 15:17:52 UTC 2014


Hi,

I've tested this script on centos 6.5 (libvirt-0.10.2, qemu-kvm-0.12.1.2)
and
ubuntu server 14.04 (libvirt 1.2.2, qemu-kvm  2.0.0) with the same result.
The created vm is very slow compared to the vm created with virt-manager,
with the same features/devices on the same host.
Can you suggest any configuration that can avoid that slowness?

With regards
Mario D.


<?php
$conn = libvirt_connect('null', false);
$name="testvm";
$arch="x86_64";
$memMB=1024;
$maxmemMB=1536;
$vcpus=1;
$iso_image="/home/iso/CentOS-6.5-x86_64-minimal.iso";
$disk1 = array(
                "path"   => "/home/vm/centos-script.raw",
                "driver" => "raw",
                "bus"    => "virtio",
                "dev"    => "hda",
                "size"   => "6G",
                "flags"  => VIR_DOMAIN_DISK_FILE |
VIR_DOMAIN_DISK_ACCESS_ALL );

$disks = array( $disk1 );
$network1 = array(
                'mac'     => '00:11:22:33:44:55',
                'network' => 'default',
                'model'   => 'e1000'
                );

$networks = array( $network1 );
$flags=VIR_DOMAIN_FLAG_FEATURE_ACPI;

$newdom=libvirt_domain_new($conn, $name, $arch, $memMB, $maxmemMB, $vcpus,
$iso_image, $disks, $networks, $flags);
print_r($newdom);
?>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20140602/205d2bdf/attachment-0001.htm>


More information about the libvir-list mailing list