
11 Dec
2013
11 Dec
'13
9:20 p.m.
Am 11.12.2013 20:56, schrieb Eric Blake:
On 12/11/2013 11:56 AM, Florian Klink wrote:
Hi,
I'm not able to create lxc domains anymore with libvirt 1.2.0-1.
# virsh create vm.xml
What does 'virsh uri' output? My guess is that your older version of libvirt was built with JUST lxc support, and that your new version has BOTH lxc and qemu support. By not specifying an explicit connection, you are probably defaulting to qemu, which explains the failure. If I'm right, then
# virsh -c lxc:/// create vm.xml
will resolve your situation (you can also set environment variables so that you don't have to always remember the -c option).
You were right. Setting the connection to lxc:/// fixed the problem. Thanks :-) Florian