mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-04-25 23:45:56 +03:00
[GH-ISSUE #536] libvirt Error - Hook script execution failed #316
Labels
No labels
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/webvirtcloud#316
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @CanGoymen on GitHub (Sep 6, 2022).
Original GitHub issue: https://github.com/retspen/webvirtcloud/issues/536
When I try to activate second virtual machine than this error occurs:
libvirt Error - Hook script execution failed: internal error: Child process (LC_ALL=C PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin /etc/libvirt/hooks/qemu test prepare begin -) unexpected exit status 1
virt-host-validate result:

@catborise commented on GitHub (Sep 7, 2022):
do you test it with virt-manager? i think it is related with libvirt bug, but you should test it with virt-manager to see if it is working or not.
@CanGoymen commented on GitHub (Sep 7, 2022):
I have figured it out , the problem was caused by /etc/libvirt/qemu file. qemu looks /run/xtables.lock file, but file's permission was wrong. I gave 777 than resolved.
sudo chmod 777 xtables.lock
Thanks.