search for: 43d2

Displaying 4 results from an estimated 4 matches for "43d2".

Did you mean: 432
2015 Jul 20
1
Hot Cloning - clone running Virtual Machines
...nge some specific fields in the XML. As I run several instances on the same server, I need to provide different names and UUIDs to avoid collisions. Unfortunately, libvirt forbids this operation issuing the following error message: error: unsupported configuration: Target domain uuid 7c85e288-88fe-43d2-8b9c-89af4c83c10a does not match source 62f28517-8601-4d2e-942c-a20d087f9f4a Same thing applies with the name field. Is this a limitation of the API or it is a designed protection mechanism? Would it be possible to overcome this limit? Thank you.
2013 Jun 30
2
Re: deadlock on connection loosing
...now, but my program still locks libvirt, currently i trying to create domain with <?xml version="1.0" encoding="UTF-8"?> <domain type="kvm"> <tittle>Automatically created domain with default configuration</tittle> <uuid>70a2e046-769c-43d2-88a0-5310ce33cbf8</uuid> <name>vm1</name> <description>no description</description> <os> <type>hvm</type> <boot dev="cdrom"/> <boot dev="hd"/> </os> <vcpu>1</vcpu> <memory un...
2013 Jul 06
0
Re: deadlock on connection loosing
...ks libvirt, > currently i trying to create domain with > > <?xml version="1.0" encoding="UTF-8"?> > <domain type="kvm"> > <tittle>Automatically created domain with default configuration</tittle> > <uuid>70a2e046-769c-43d2-88a0-5310ce33cbf8</uuid> > <name>vm1</name> > <description>no description</description> > <os> > <type>hvm</type> > <boot dev="cdrom"/> > <boot dev="hd"/> > </os> > &l...
2013 Jun 24
3
deadlock on connection loosing
libvirtd will lock if for example kill programm which established connection, only sigkill + restart helps., to reproduce: virConnectPtr libvirt_connection = virConnectOpen("qemu:///system"); if(libvirt_connection == NULL) { std::cout<<"failed to connect to qemu:///system\n"; exit(-1); } exit(0);