From 3c553e0dade40608a3496da400b50e94488c1210 Mon Sep 17 00:00:00 2001 From: Anatoliy Guskov Date: Fri, 27 Mar 2015 16:17:28 +0200 Subject: [PATCH] Update README.md --- README.md | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cfbea18..fabe3a5 100644 --- a/README.md +++ b/README.md @@ -1 +1,27 @@ -# webvirtcloud +## WebVirtCloud + +### Description + +WebVirtMgr is a libvirt-based Web interface for managing virtual machines for admins and users. It allows you to create and configure new domains, and adjust a domain's resource allocation. A noVNC viewer presents a full graphical console to the guest domain. KVM is currently the only hypervisor supported. + +### Install WebVirtCloud panel + +```bash +sudo apt-get -y install git python-pip python-dev python-libvirt python-libxml2 nginx supervisor +git clone https://github.com/retspen/webvirtcloud +cd webvirtmgr +sudo pip install -r conf/requirements.txt +python manage.py migrate +sudo cp conf/supervisor/webvirtcloud.conf /etc/supervisor/conf.d +sudo cp conf/nginx/webvirtcloud.conf /etc/nginx/conf.d +cd .. +sudo mv webvirtcloud /var/www/ +sudo chown -R www-data:www-data /var/www/webvirtcloud +``` + +Restart services for running WebVirtCloud: + +```bash +sudo service nginx restart +sudo service supervisor restart +```