16

When I tried to install new virtual machine in virt-manager, virtualization - localhost (QEMU) is not connected.

It shows Error: No active connection to installed on. How to fix this problem.

muru
  • 207,970
aditya
  • 161
  • Could you please be more specific: When and where does it show the error? Is that the complete error message? Please add screenshots of your virt-manager window and the error message to yourquestion. – ridgy Jul 05 '17 at 13:23

5 Answers5

10

You are likely going to need to make sure your user owns the libvirt socket

sudo chown $USER:$USER /var/run/libvirt/libvirt-sock
Jab
  • 85
5
  1. Verify you have all packages you need

    sudo apt install -y qemu-kvm libvirt0 libvirt-bin virt-manager bridge-utils
    sudo systemctl enable libvirt-bin
    
  2. Verify that libvirtd and libvirt-bin are up and running

    sudo service libvirtd status
    sudo service libvirt-bin status
    
  3.  sudo systemctl reboot
    
kurdtpage
  • 197
  • 1
  • 8
Zeh
  • 151
5

Make sure your username is part of the libvirt group. Try running sudo adduser <username> libvirt. This fixed the problem for me.

ayeiser
  • 51
3

Try restarting the libvirtd service:

sudo service libvirtd stop
sudo service libvirtd start
kurdtpage
  • 197
  • 1
  • 8
3

In my case I had the error when trying to run it right after the installation.

I tried restarting the libvirtd service in that same session but with no success.

I tried logging out and logging back in still with no success.

But after rebooting the machine, all was fine.

Wadih M.
  • 392
  • 2
    Most of the other answers here are listing out stuff you definitely shouldn't have to do on a modern linux distro. Rebooting did the trick for me just fine, thanks. – JP Duffy Nov 22 '23 at 14:31