Difference between revisions of "Setup OpenStack with Virtuozzo 7"
Mnestratov (talk | contribs) |
Mnestratov (talk | contribs) |
||
Line 45: | Line 45: | ||
$ ./setup_devstack_for_vz7_compute.sh COMPUTE_HOST_IP PASSWORD CONTROLLER_HOST_IP | $ ./setup_devstack_for_vz7_compute.sh COMPUTE_HOST_IP PASSWORD CONTROLLER_HOST_IP | ||
+ | == Install and configure a compute node on [[Virtuozzo]] 7 == <!--T:16--> | ||
+ | |||
+ | <!--T:17--> | ||
+ | * Follow instructions on [http://docs.openstack.org/liberty/install-guide-rdo/nova-compute-install.html OpenStack.org] | ||
+ | * In addition to above instructions change /etc/nova/nova.conf: | ||
+ | |||
+ | [libvirt] | ||
+ | ... | ||
+ | virt_type = parallels | ||
+ | |||
+ | == Install and configure a compute node on [[Virtuozzo]] 7 == <!--T:16--> | ||
+ | |||
+ | <!--T:17--> | ||
+ | * Follow instructions on [http://docs.openstack.org/liberty/install-guide-rdo/nova-controller-install.html OpenStack.org] | ||
+ | * In addition to above instructions change /etc/nova/nova.conf: | ||
+ | [libvirt] | ||
+ | ... | ||
+ | virt_type = parallels | ||
== See also == <!--T:100--> | == See also == <!--T:100--> | ||
+ | * [http://docs.openstack.org/liberty/install-guide-rdo/environment-packages.html OpenStack installation guide] | ||
* [https://docs.openvz.org/ Virtuozzo documentation] | * [https://docs.openvz.org/ Virtuozzo documentation] | ||
* [[Virtuozzo ecosystem]] | * [[Virtuozzo ecosystem]] |
Revision as of 13:41, 10 March 2016
<translate> This howto describes how to install OpenStack on Virtuozzo 7.
Contents
Devstack all-in-one installation
Clone virtuozzo scripts:
$ cd /vz $ git clone https://github.com/virtuozzo/virtuozzo-openstack-scripts $ cd virtuozzo-openstack-scripts
Run the script and follow instructions (if any):
$ ./setup_devstack_for_vz7.sh HOST_IP PASSWORD
Devstack multi node installation
Clone virtuozzo scripts on your CONTROLLER node:
$ cd /vz $ git clone https://github.com/virtuozzo/virtuozzo-openstack-scripts $ cd virtuozzo-openstack-scripts
Run the script on your CONTROLLER node and follow instructions (if any):
$ ./setup_devstack_for_vz7.sh HOST_IP PASSWORD true
Clone virtuozzo scripts on your COMPUTE node:
$ cd /vz $ git clone https://github.com/virtuozzo/virtuozzo-openstack-scripts $ cd virtuozzo-openstack-scripts
Run the script on your COMPUTE node and follow instructions (if any):
$ ./setup_devstack_for_vz7_compute.sh COMPUTE_HOST_IP PASSWORD CONTROLLER_HOST_IP
Install and configure a compute node on Virtuozzo 7
- Follow instructions on OpenStack.org
- In addition to above instructions change /etc/nova/nova.conf:
[libvirt] ... virt_type = parallels
Install and configure a compute node on Virtuozzo 7
- Follow instructions on OpenStack.org
- In addition to above instructions change /etc/nova/nova.conf:
[libvirt] ... virt_type = parallels
See also
</translate>