You are not logged in.
Pages: 1
Hi,
#systemctl status libvirtd
● libvirtd.service - Virtualization daemon
Loaded: loaded (/usr/lib/systemd/system/libvirtd.service; enabled; vendor preset: disabled)
Active: failed (Result: start-limit) since Cum 2015-07-17 18:21:53 UTC; 1h 22min ago
Docs: man:libvirtd(8)
[url]http://libvirt.org[/url]
Main PID: 10476 (code=exited, status=1/FAILURE)
Tem 17 18:21:53 archlinux systemd[1]: Failed to start Virtualization daemon.
Tem 17 18:21:53 archlinux systemd[1]: libvirtd.service: Unit entered failed state.
Tem 17 18:21:53 archlinux systemd[1]: libvirtd.service: Failed with result 'exit-code'.
Tem 17 18:21:53 archlinux systemd[1]: libvirtd.service: Service hold-off time over, scheduling restart.
Tem 17 18:21:53 archlinux systemd[1]: libvirtd.service: Start request repeated too quickly.
Tem 17 18:21:53 archlinux systemd[1]: Failed to start Virtualization daemon.
Tem 17 18:21:53 archlinux systemd[1]: libvirtd.service: Unit entered failed state.
Tem 17 18:21:53 archlinux systemd[1]: libvirtd.service: Failed with result 'start-limit'.
-----------------------------
install source code
# groupadd libvirt
# gpasswd -a libvirt kvm
# gpasswd -a toor28 libvirt
# nano /etc/libvirt/qemu.conf
vnc_listen = "0.0.0.0"
user = "libvirt"
Allow non-root users to manage VMs with file-permission based access control.
# nano /etc/libvirt/libvirtd.conf
unix_sock_group = "libvirt"
unix_sock_ro_perms = "0777"
unix_sock_rw_perms = "0770"
auth_unix_ro = "none"
auth_unix_rw = "none"
Enable unencrypted TCP connections. This is for simplicity, in anything other than a testing environment SASL should be enabled.
listen_tls = 0
listen_tcp = 1
auth_tcp=none
Start libvirtd in listening mode by passing the --listen argument.
# nano /etc/conf.d/libvirtd
LIBVIRTD_ARGS="--listen"
Enable and start the libvirt daemon.
# systemctl enable libvirtd
# systemctl start libvirtdLast edited by toor28 (2015-07-17 17:06:49)
Offline
I assume you want to know what is causing the error. But I cannot assume:
* what window manager you are using (if any)
* when the problem started (first attempt, worked in the past but now doesn't)
* what hardware you are using
* what you have already tried
Maybe this is in order: http://www.catb.org/~esr/faqs/smart-questions.html
Matt
"It is very difficult to educate the educated."
Offline
This is my first installation on the other hand i have searched on google and the results have not been ok
System Information:
Arch Linux x64 intel 3337u intel
libvirt error but Virtualbox is working
Offline
Pages: 1