virtmanager - Incapaz de localizar o daemon libvirtd

0

Eu tentei iniciar o Virt-manager mas recebo este erro

Unable to connect to libvirt.

internal error: Unable to locate libvirtd daemon in /usr/sbin (to override, set $LIBVIRTD_PATH to the name of the libvirtd binary)
Hi, I tried to start virtmanagerr (installed via mint software center)
but get this?

    Libvirt URI is: qemu:///system

    Traceback (most recent call last):
      File "/usr/share/virt-manager/virtManager/connection.py", line 1027, in _open_thread
        self.vmm = self._try_open()
      File "/usr/share/virt-manager/virtManager/connection.py", line 1009, in _try_open
        flags)
      File "/usr/lib/python2.7/dist-packages/libvirt.py", line 102, in openAuth
        if ret is None:raise libvirtError('virConnectOpenAuth() failed')
    libvirtError: internal error: Unable to locate libvirtd daemon in /usr/sbin (to override, set $LIBVIRTD_PATH to the name of the libvirtd binary)
    
por FutuToad 24.03.2014 / 21:18

2 respostas

1

Tente iniciar libvirtd .

$ service libvirtd restart

Você pode verificar se está funcionando assim:

$ pgrep libvirtd
1124

Esse número é o ID do processo de libvirtd .

$ ps -eaf|grep [l]ibvirtd
root      1124     1  0 Mar17 ?        00:00:02 /usr/sbin/libvirtd
    
por 24.03.2014 / 22:37
1

Estou usando o debian e estava enfrentando o mesmo problema. Eu inicio o virt-manager via konsole com o comando acima e o problema resolvido.

virt-manager --no-fork

Deste modo, o virt-manager está pedindo a senha do ssh do konsole. Além disso, fornece alguma saída no konsole.

    
por 23.06.2014 / 10:43