Я пытаюсь настроить вычислительный ресурс libvirt в Foreman и установить KVM и Foreman на одном хосте Centos 7.
Добавление вычислительного ресурса с работами, но не с использованием учетной записи.qemu+ssh://[email protected]/system
qemu+ssh://hypervisor.example.com/system
foreman
Используя foreman
учетную запись, я получаю следующую ошибку:
bash-4.2$ virsh -c qemu+ssh://hypervisor.example.com/system list
error: failed to connect to the hypervisor
error: End of file while reading data: : Input/output error
Я добавил foreman
в libvirtd
группу и настроил access_drivers = [ "polkit" ]
в /etc/libvirt/libvirtd.conf
.
Я последовал заhttps://wiki.libvirt.org/page/SSHPolicyKitSetupи создал:
/etc/polkit-1/rules.d/90-foreman.rules
polkit.addRule(function(action, subject) { if (action.id == "org.libvirt.unix.manage" && subject.isInGroup("libvirt")) { return polkit.Result.YES; } });
/etc/polkit-1/localauthority/50-local.d/50-libvirt-remote-access.pkla
[Allow foreman libvirt management permissions] Identity=unix-user:foreman Action=org.libvirt.unix.manage ResultAny=yes ResultInactive=yes ResultActive=yes
Ни одна из конфигураций не работает. Что я упустил?