1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-10-31 19:44:16 +00:00
webvirtcloud/README.md

48 lines
1.2 KiB
Markdown
Raw Normal View History

2015-03-27 14:17:28 +00: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
```bash
sudo apt-get -y install git python-pip python-dev python-libvirt python-libxml2 nginx supervisor
git clone https://github.com/retspen/webvirtcloud
2015-05-08 07:43:43 +00:00
cd webvirtcloud
2015-03-27 14:17:28 +00:00
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
```
2015-03-27 14:23:49 +00:00
2015-03-27 14:24:51 +00:00
### Setup libvirt and KVM on server
2015-03-27 14:23:49 +00:00
```bash
wget -O - https://clck.ru/9Sz6S | sudo sh
```
2015-03-27 14:32:33 +00:00
### Default credentials
login: admin
password: admin
2015-05-18 19:00:30 +00:00
### How To Update
```bash
2015-05-18 19:08:14 +00:00
$ git pull
2015-05-18 19:00:30 +00:00
$ python manage.py migrate
$ sudo service supervisor restart
2015-05-18 19:08:14 +00:00
```