1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 03:54:15 +00:00
No description
Find a file
2015-03-27 16:17:28 +02:00
accounts Fixed refer from logs to accouts admin 2015-03-26 16:03:12 +02:00
computes Fixed graphs timer 2015-03-25 11:59:22 +02:00
console Fixed consoled app 2015-03-27 11:22:38 +02:00
create Added migration 2015-03-25 11:36:37 +02:00
development Added settings-dev and updated Django 2015-03-25 22:30:57 +02:00
instances Fixed buttons on inst pages 2015-03-27 11:53:13 +02:00
interfaces Add new forms and templates 2015-03-10 16:24:10 +02:00
logs Added migration 2015-03-25 11:36:37 +02:00
networks Add new forms and templates 2015-03-10 16:24:10 +02:00
secrets Add new forms and templates 2015-03-10 16:24:10 +02:00
static Fixed login page 2015-03-24 16:16:46 +02:00
storages Fix rdb 2015-03-11 21:31:08 +02:00
templates Fixed buttons on inst pages 2015-03-27 11:53:13 +02:00
vrtManager Added profile page 2015-03-24 14:45:38 +02:00
webvirtcloud Fixed consoled app 2015-03-27 11:22:38 +02:00
.gitignore Initial commit 2015-02-27 10:53:51 +02:00
manage.py Initial commit 2015-02-27 10:53:51 +02:00
README.md Update README.md 2015-03-27 16:17:28 +02:00
Vagrantfile Add fixtures 2015-02-27 15:56:10 +02:00

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

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:

sudo service nginx restart
sudo service supervisor restart