mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-26 08:05:54 +03:00
[GH-ISSUE #484] The installation method & commands do not work for CentOS 7 #361
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 @mkstalal on GitHub (Dec 22, 2014).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/484
The steps to install webvirtmgr in CentOS 7 does not work, specially the commands & file locations for nginx installation do not work, nor the firewall configuration is clear enough for CentOS 7
@aafanasyev commented on GitHub (Dec 22, 2014):
Please look carefully, where is nginix html or www folder. If not exist configure nginx directory properly. There you can put the webvirtmgr folder, I did also couple mistakes when I installed it on Ubuntu, but I am sure it should work.
@u1735067 commented on GitHub (Dec 24, 2014):
Maybe not the right place to talk about this, but I don't have the time to do somethink like editing the wiki for now ; here's what I had to do to get WebVirtMgr working on a fresh CentOS 7 hypervisor flavour, using a dedicated user for webvirtmgr (and not nginx as suggested in the howto) :
Because libvirtd control access to the local socket using polkit which require password by default, this rule allow this user to go through without password.
Because nginx as a proxy needs to connect to the local webvirtmgr server (or you'll get some 5xx error).
Of course you have to create an user webvirtmgr (
useradd webvirtmgr -r -d /srv/http/webvirtmgr/ -l -M -Uadapt it to your need) and changeuser=nginxtouser=webvirtmgrin/etc/supervisord.confCleaner installation this way I think.
Good luck.