search for: definexml

Displaying 16 results from an estimated 16 matches for "definexml".

Did you mean: define_xml
2012 May 09
3
creating a domain
hi, i am a bit confused on how to start an inactive domain using the python bindings, any help would be appreciated. (inactive as in the domain was created with?virConnect.defineXML sometime in the past) looks like i have to use virDomain.create, however virDomain.create needs a defined domain xmldesc as a parameter and i am not sure on how to get that i guess if?virConnect.create was happening right after?virConnect.defineXML i could get the return value of?virConnect.defi...
2015 Dec 01
1
Why does libvirt insert USB controller automagically?
Hello all, I find this curious behavior that libvirt will automatically insert a USB controller and a memballoon virtio driver into the domain's XML, when defineXML is called. IOW, the original XML did not have these 2 devices but they are present right after defineXML is called. Why should libvirt add a USB controller? DETAILS: Here is a little Python snippet to show that behavior: import libvirt conn = libvirt.open('qemu:///system') xml_list = open...
2016 Jan 08
2
remove cdrom after installing os on a guest
Hi all, I have the following issue, and I hope someone know a way to handle it. I need to grammatically need to create/install a guest OS using the libvirt API. Currently what I do: 1. create a xml with the vm configuration (this will include a path to the iso image) 2. connection.defineXML(<my_config>) 3. vm = connection.lookupByName(<domain_name>) 4. vm.create() This will create a new guest and boot the iso to install the OS. But after installation, when I restart, It again boots from the cdrom. So obviously I need remove the cdrom somehow. I could edit the xml and m...
2015 Dec 01
0
Re: Why does libvirt insert USB controller automagically?
On 11/30/2015 07:30 PM, Sundar Nadathur wrote: > Hello all, > > I find this curious behavior that libvirt will automatically insert a USB > controller and a memballoon virtio driver into the domain?s XML, when > defineXML is called. IOW, the original XML did not have these 2 devices but > they are present right after defineXML is called. Why should libvirt add a USB > controller? > > Historical compatibility. Older qemu would provide these devices automatically with no way for libvirt to disable them...
2016 Jan 29
2
generate interface MAC addresses in a particular order
...;) intf.set('type', 'bridge') src = ET.SubElement(intf,'source') src.set('bridge', bIntf) model = ET.SubElement(intf,'model') model.set('type', 'e1000') xml = ET.tostring(root) self.conn.defineXML(xml) Now the problem I have is that the MAC addresses are auto-generated and because of this there is no way to predict which interface number the newly added interface will map to, on the VM. Ideally, the first added interface is mapped to eth0/0, the second one eth0/1...etc. Since the mappings...
2015 Dec 17
2
migrate a guest from VMware to KVM
...API I get the "no boot disk found" message when starting the vm. When importing the VM through the libvirtAPI, I use the same xml description virsh outputs (dumpxml) after initially doing the import. xml - the description I got using virsh xmldump <domain name> xmlDesx = xml conn.defineXML(xmlDesc) One other important aspect is I am using a directory storage pool to store all my volumes (.img files). When I use virsh to import the vm, the storage pool recognizes the new volume (the .img file I converted from the .vmdk file). But when I use the libvirtAPI, it does not. So my guess i...
2012 May 09
2
serial console
hi, when creating a domain using libvirt python api, how would i tell libvirt to use a unique serial port number for domains? in the?libvirt.virConnect.defineXML(conn,domainxml) call when i create the domainxml object, i need to ensure that the part below has a unique # for target port <serial type='pty'> ? <target port='0'/> </serial> <console type='pty'> ? <target type='serial' port='0'/&...
2012 Oct 30
2
libvirt python api error
I use the code below: import libvirt auth = [[libvirt.VIR_CRED_AUTHNAME,libvirt.VIR_CRED_NOECHOPROMPT],'root',None] conn = libvirt.openAuth("qemu:///system",auth,0) with open("/root/cflinux.xml") as f: xml=f.read() domain = conn.defineXML(xml) domain.createWithFlags(0) and report the error: libvir: Security Labeling error : internal error cannot load AppArmor profile 'libvirt-f0655289-318d-4aa7-b87a-6ce7cdead4ee' Traceback (most recent call last): File "a.py", line 7, in <module> domain.createWithFla...
2016 Feb 01
1
Re: generate interface MAC addresses in a particular order
...src = ET.SubElement(intf,'source') > > src.set('bridge', bIntf) > > model = ET.SubElement(intf,'model') > > model.set('type', 'e1000') > > > > xml = ET.tostring(root) > > self.conn.defineXML(xml) > > > > Now the problem I have is that the MAC addresses are auto-generated and > > because of this there is no way to predict which interface number the > newly > > added interface will map to, on the VM. Ideally, the first added > interface > > is mapped t...
2015 Dec 11
2
libvirt domain configuration xml
I am trying to change a domain configuration from a python script. More specific, I want to edit the VNC settings. You can't do this using the libvirt API so you have to edit the domain configuration: Fo exmple, to disable VNC for a domain 'test1': vmXml = vm.XMLDesc(0) root = ET.fromstring(vmXml) devices = root.find('./devices') graphics = devices.find('graphics')
2013 Oct 09
3
Re: failing connections w/ virt-manager
Am 08.10.2013 14:46, schrieb Stefan G. Weichinger: >> Try enabling the flag, re-emerging the package, setting the logs and >> then reproduce it again. Check the logs and you should see why it's >> disconnecting. The docs say that libvirtd has to listen on the TCP port ... checked that: # netstat -alnp | grep libv tcp 0 0 0.0.0.0:16509 0.0.0.0:*
2015 Dec 11
0
Re: libvirt domain configuration xml
...open('path_to/test1.xml', 'w') as f: > f.write(xml) Writing to path_to/test1.xml is not necessary (it's merely a convenient way for you to have a point-in-time snapshot of what the domain XML was); what you are really looking for is to write the XML back to libvirt, via: vm.defineXML(xml) > So the question really is: where is the domain configuration stored? Am I > editing the write file, or am I missing something? The official copy is stored in memory, so the only supported way to manipulate it is via libvirt API. Libvirt happens to copy its memory into files located...
2015 Dec 17
0
Re: migrate a guest from VMware to KVM
...uot; message when starting the vm. > > When importing the VM through the libvirtAPI, I use the same xml > description virsh outputs (dumpxml) after initially doing the import. > > xml - the description I got using virsh xmldump <domain name> > > xmlDesx = xml > conn.defineXML(xmlDesc) > > One other important aspect is I am using a directory storage pool to store > all my volumes (.img files). > When I use virsh to import the vm, the storage pool recognizes the new > volume (the .img file I converted from the .vmdk file). But when I use the > libvirtAP...
2016 Jan 31
0
Re: generate interface MAC addresses in a particular order
...'bridge') > src = ET.SubElement(intf,'source') > src.set('bridge', bIntf) > model = ET.SubElement(intf,'model') > model.set('type', 'e1000') > > xml = ET.tostring(root) > self.conn.defineXML(xml) > > Now the problem I have is that the MAC addresses are auto-generated and > because of this there is no way to predict which interface number the newly > added interface will map to, on the VM. Ideally, the first added interface > is mapped to eth0/0, the second one eth0/1......
2012 May 06
0
storage-pools and volumes
hi, i am trying to create a domain using libvirt 0.9.4 python api and i can't find any information on how to use the libvirt python api with linux logical volumes http://libvirt.org/guide/html-single/#Application_Development_Guide-Device_Config-Disks is TBD i figured out that i need to use defineXML to create a domain, however for the disk part in the xml, i am not sure if i need to create the LVM first, or just specify the LVM path and libvirt will create the lvm for me and stick the domain on the lvm ? ? <disk type='block' device='disk'> ? ? ? <driver name='qemu...
2015 Dec 15
1
Re: libvirt domain configuration xml
...;w') as f: > > f.write(xml) > > Writing to path_to/test1.xml is not necessary (it's merely a convenient > way for you to have a point-in-time snapshot of what the domain XML > was); what you are really looking for is to write the XML back to > libvirt, via: > > vm.defineXML(xml) > > > So the question really is: where is the domain configuration stored? Am I > > editing the write file, or am I missing something? > > The official copy is stored in memory, so the only supported way to > manipulate it is via libvirt API. Libvirt happens to copy it...