Tagged Questions
The libvirt tag has no wiki summary.
3
votes
1answer
641 views
Alternative to virsh (libvirt)
I am using virsh list to display the list of vms running on the computer. I want the information printed in the process in the form of a 2d array.
One way to go about this is to have the output, use ...
3
votes
1answer
221 views
How to deal with interactive API in python
I'm in a situation where I need to pass some texts to a prompt generate by a API (seems for API it's a pretty weird behavior, this is the first time I ran into this), like below:
kvm_cli = ...
2
votes
3answers
2k views
libvirt and VirtualBox / Getting Started
I'm trying to get started on libvirt with VirtualBox as a virtualization solution. I installed everything and VirtualBox itself is running when using their VBoxHeadless command.
However, libvirt fails ...
2
votes
2answers
5k views
KVM/QEMU network TAP problems with libvirt
I'm trying to use libvirt with virsh to manage my kvm/qemu vms. The problem I have is with getting it to work with public IPs. The server is running ubuntu 8.04.
libvirt keeps trying to run it as:
...
1
vote
0answers
63 views
Download hangs using a Maven repository mirror on a kvm-qemu server
I installed a Maven repository (tested NexusOSS 1.9.1.1 bundle and Artifactory 2.4.2) on a virtual Ubuntu 10.04.3 LTS server hosted on an Ubuntu 10.04.2 LTS server by libvirt 0.7.5-5ubuntu27.16 (using ...
1
vote
1answer
57 views
Plugin in Java for Monitoring VIrtual machines running on Libvirt
I need a plugin to monitor the following:
CPU, network and disk statistics
Virtual machines CPU based on libvirt
Generate graphs for both above options
Open remote connection to other machines and ...
1
vote
0answers
182 views
physical to virtual (kvm) migration with saving IP of guest and reusing it at host [closed]
I do a physical-to-virtual migration of BSD server with saving of IP address. The virtual host is Linux/KVM.
The setting is: I had a physical BSD server with failed Hardware. I just replaced it with ...
1
vote
3answers
143 views
How to set a timeout in libvirt (using Python)
I would like to set a short connection timeout (only some seconds) when using libvirt in my Python program instead of the long default one.
I found the C function: virEventAddTimeoutFunc() in the C ...
1
vote
1answer
714 views
get running domains info using python + libvirt
I'm trying to do a simple script that will get various informations about running domains on a xen host.
So far, i have :
import libvirt
import pprint
conn = libvirt.open('xen:///')
for id in ...
1
vote
2answers
380 views
libvirt java binding and virtualbox-ose
I'm trying to connect to vbox hypervisor on an Ubuntu 10.04 machine through libvirt java binding by simply invoking:
Connect conn = new Connect("vbox:///session", false);
but I got this exception:
...
0
votes
1answer
37 views
Can I register event callbacks using the libvirt Python module with a QEMU backend?
I would like to write some code to monitor events for domains running under QEMU, managed by libvirt. However, trying to register an event handler yields the following error:
>>> import ...
0
votes
0answers
46 views
Java client with libvirt on Windows
I am writing a Java based client that would be executed from Windows that will use libvirt.
Got libvirt-java (http://libvirt.org/sources/java/libvirt-java-0.4.7.tar.gz) and build a jar out it (Ant ...
0
votes
0answers
46 views
Libvirt Java Binding- Use of listDomains() for Xen
I'm using the following program:
public class minitest {
public static void main(String[] args) {
Connect conn=null;
try{
int i;
conn = new Connect("xen:///", true);
...
0
votes
1answer
180 views
libvirt and VirtualBox on OS X
I'm trying to access VirtualBox through libvirt on OS X (Lion). I installed libvirt 0.9.4 using Homebrew. However, libvirt fails to connect to VirtualBox:
# virsh -c vbox:///session
error: internal ...
0
votes
0answers
44 views
Manage KVM VMs with python like VBoxmanagement
I have VM which run under KVM and i want to manage them with python to do some functions like
1. send file to guest VM
2. execute a process or program in guest VM
3. dump memory ...
0
votes
0answers
203 views
Install libvirt with xenserver api support
I want to have a try to install libvirt on my ubuntu PC to manage a remote xenserver,
but there's some problem blocks me..
I download the libvirt source package .
when in this step :
./configure ...
0
votes
1answer
192 views
Making a connection to Qemu using Libvirt Java API
Problem statement:
1.Create a connection to Qemu. Done by the call-conn1 = new Connect("qemu+ssh://login_name@IP/system", false). This is done in one class(connect.java).
2.Create new VMs on the above ...
0
votes
2answers
151 views
virsh shutdown for OpenBSD (libvirt/kvm)
Is it possible to correctly shutdown a openbsd 4.7 or 4.9 with
virsh shutdown OpenBSD
The openbsd is under kvm/qemu configured from libvirt.
shutdown should send an ACPI signal "Power button ...
0
votes
1answer
214 views
Booting vdi image on virtualbox using libvirt
I am not able to boot a vdi image on virtualbox using libvirt .It keeps showing me "Bootable medium not found". I have tried booting it manually with virtualbox GUI and it boots without any problem. ...
0
votes
1answer
303 views
live migration using KVM
I want live migration of virtual machines between two host and for that i am using following command:
virsh migrate vmtest qemu+ssh://root@10.20.254.106/system
I am getting the following error ...
0
votes
1answer
135 views
Use VBoxManage from code or libvirt?
I am currently doing a project that needs VirtualBox as third party software. It doesn't need to do very complex stuff, basicly just import an .ova, forward a port, start it, export it again and some ...
0
votes
1answer
182 views
Setting Remote Desktop access password in KVM
I am using KVM with libvirt for virtualization. I can access remote desktop of my vm's without any password. I want to set a Password for each vm access. I am using vinagre : for remote desktop ...