You are on page 1of 29

Signup and Pricing

Explore GitHub

Features

Blog

Sign in

mseknibilel / OpenStack-Folsom-Install-guide
Code Network Pull Requests
0

PUBLIC

Star
Issues
2

15

Fork
Graphs

14

branch: master

Files

Commits

Branches

Tags

Downloads

OpenStack-Folsom-Install-guide / OpenStack_Folsom_Install_Guide_WebVersion.rst
mseknibilel 4 hours ago Update OpenStack_Folsom_Install_Guide_WebVersion.rst
2 contributors

file

858 lines (581 sloc)

24.033 kb

Edit

Raw

Blame

History

OpenStack Folsom Install Guide


Version: Source: Keywords: 2.0 https://github.com/mseknibilel/OpenStack-Folsom-Install-guide Multi node OpenStack, Folsom, Quantum, Nova, Keystone, Glance, Horizon, Cinder, OpenVSwitch, KVM, Ubuntu Server 12.10 (64 bits).

Authors
open in browser PRO version
Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

Copyright (C) Bilel Msekni <bilel.msekni@telecom-sudparis.eu>

Contributors
Marco Consonni <marco_consonni@hp.com> Dennis E Miyoshi <dennis.miyoshi@hp.com> Houssem Medhioub <houssem.medhioub@it-sudparis.eu> Djamal Zeghlache <djamal.zeghlache@telecom-sudparis.eu> Wana contribute ? Read the guide, send your contribution and get your name listed ;)

Table of Contents
0. What is it? 1. Requirements 2. Getting Ready 3. Keystone 4. Glance 5. OpenVSwitch 6. Quantum 7. Nova 8. Cinder 9. Horizon 10. Adding a compute node 11. Start your first VM 12. Licencing 13. Contacts 14. Acknowledgement 15. To do

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

0. What is it?
OpenStack Folsom Install Guide is an easy and tested way to create your own OpenStack plateform. Version 2.0 Status: stable

1. Requirements
Node Role: Control Node: Compute Node: NICs eth0 (192.168.100.232), eth1 (192.168.100.234) eth0 (192.168.100.250), eth1 (Your Choice)

Note 1: If you are not interrested in Quantum, you can also use this guide but you must follow the nova section found here instead of the one written in this guide. Note 2: eth1 on compute node doesn't need to be internet connected. Note 3: This is my current network architecture, you can add as many compute node as you wish.

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

2. Getting Ready
2.1. Preparing Ubuntu 12.10
After you install Ubuntu 12.10 Server 64bits, Go to the sudo mode and don't leave it until the end of this guide:
sudo su

Update your system:


apt-get update apt-get upgrade apt-get dist-upgrade

2.2.Networking
Both NICs on the controller node need internet access:
#For OpenStack management auto eth0 iface eth0 inet static address 192.168.100.232 netmask 255.255.255.0 gateway 192.168.100.1 dns-nameservers 8.8.8.8 #For internet access auto eth1 iface eth1 inet static address 192.168.100.234 netmask 255.255.255.0

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

2.3. MySQL & RabbitMQ


Install MySQL:
apt-get install mysql-server python-mysqldb

Configure mysql to accept all incoming requests:


sed -i 's/127.0.0.1/0.0.0.0/g' /etc/mysql/my.cnf service mysql restart

Install RabbitMQ:
apt-get install rabbitmq-server

2.4. Node synchronization


Install other services:
apt-get install ntp

Configure the NTP server to synchronize between your compute nodes and the controller node:

sed -i 's/server ntp.ubuntu.com/server ntp.ubuntu.com\nserver 127.127.1.0\nfudge 127.127.1.0 stratum 10/g' /etc service ntp restart

2.5. Others
Install other services:
apt-get install vlan bridge-utils

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

Enable IP_Forwarding:
nano /etc/sysctl.conf #Uncomment net.ipv4.ip_forward=1

3. Keystone
This is how we install OpenStack's identity service: Start by the keystone packages:
apt-get install keystone

Create a new MySQL database for keystone:


mysql -u root -p CREATE DATABASE keystone; GRANT ALL ON keystone.* TO 'keystoneUser'@'%' IDENTIFIED BY 'keystonePass'; quit;

Adapt the connection attribute in the /etc/keystone/keystone.conf to the new database:


connection = mysql://keystoneUser:keystonePass@192.168.100.232/keystone

Restart the identity service then synchronize the database:


service keystone restart keystone-manage db_sync

Fill up the keystone database using the two scripts available in the Scripts folder of this git repository. Beware that you MUST comment every part related to Quantum if you don't intend to install it otherwise you will have trouble with your dashboard later: open in browser PRO version Are you a developer? Try out the HTML to PDF API pdfcrowd.com

#Modify the HOST_IP variable before executing the scripts chmod +x keystone_basic.sh chmod +x keystone_endpoints_basic.sh ./keystone_basic.sh ./keystone_endpoints_basic.sh

Create a simple credential file and load it so you won't be bothered later:
nano creds #Paste the following: export OS_TENANT_NAME=admin export OS_USERNAME=admin export OS_PASSWORD=admin_pass export OS_AUTH_URL="http://192.168.100.232:5000/v2.0/" # Load it: source creds

To test Keystone, we use a simple curl request:


apt-get install curl openssl curl http://192.168.100.232:35357/v2.0/endpoints -H 'x-auth-token: ADMIN'

4. Glance
After installing Keystone, we continue with installing image storage service a.k.a Glance:
apt-get install glance

Create a new MySQL database for Glance:

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

mysql -u root -p CREATE DATABASE glance; GRANT ALL ON glance.* TO 'glanceUser'@'%' IDENTIFIED BY 'glancePass'; quit;

Update /etc/glance/glance-api-paste.ini with:


[filter:authtoken] paste.filter_factory = keystone.middleware.auth_token:filter_factory auth_host = 192.168.100.232 auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = glance admin_password = service_pass

Update the /etc/glance/glance-registry-paste.ini with:


[filter:authtoken] paste.filter_factory = keystone.middleware.auth_token:filter_factory auth_host = 192.168.100.232 auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = glance admin_password = service_pass

Update /etc/glance/glance-api.conf with:


sql_connection = mysql://glanceUser:glancePass@192.168.100.232/glance

And:

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

[paste_deploy] flavor = keystone

Update the /etc/glance/glance-registry.conf with:


sql_connection = mysql://glanceUser:glancePass@192.168.100.232/glance

And:
[paste_deploy] flavor = keystone

Restart the glance-api and glance-registry services:


service glance-api restart; service glance-registry restart

Synchronize the glance database:


glance-manage db_sync

Restart the services again to take into account the new modifications:
service glance-registry restart; service glance-api restart

To test Glance's well installation, we upload a new image to the store. Start by downloading the cirros cloud image to your node and then uploading it to Glance:

mkdir images cd images wget https://launchpad.net/cirros/trunk/0.3.0/+download/cirros-0.3.0-x86_64-disk.img glance image-create --name myFirstImage --is-public true --container-format bare --disk-format qcow2 < cirros-0

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

Now list the images to see what you have just uploaded:
glance image-list

6. OpenVSwitch
Install the openVSwitch:
apt-get install -y openvswitch-switch

Create the bridges:


#br-ex will be used to ensure access to VM from the outside world (a.k.a internet) ovs-vsctl add-br br-ex ovs-vsctl add-port br-ex eth1

7. Quantum
Quantum literaly eliminated the network overhead i used to deal with during the nova-network era. Install the Quantum server:
apt-get install quantum-server quantum-plugin-openvswitch

Create a database:
mysql -u root -p CREATE DATABASE quantum; GRANT ALL ON quantum.* TO 'quantumUser'@'%' IDENTIFIED BY 'quantumPass'; quit;

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

Edit the OVS plugin configuration file /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini with:


#Under the database section [DATABASE] sql_connection = mysql://quantumUser:quantumPass@192.168.100.232/quantum #Under the OVS section [OVS] tenant_network_type=vlan network_vlan_ranges = physnet1:1:4094

Restart the quantum server:


service quantum-server restart

Install quantum DHCP and l3 agents:


apt-get -y install quantum-dhcp-agent quantum-l3-agent

Edit /etc/quantum/api-paste.ini
[filter:authtoken] paste.filter_factory = keystone.middleware.auth_token:filter_factory auth_host = 192.168.100.232 auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = quantum admin_password = service_pass

In addition, update the /etc/quantum/l3_agent.ini:


auth_url = http://192.168.100.232:35357/v2.0

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

auth_region = RegionOne admin_tenant_name = service admin_user = quantum admin_password = service_pass

Restart all the services:


service quantum-server restart service quantum-dhcp-agent restart service quantum-l3-agent restart

8. Nova
Start by installing nova components:
apt-get install -y nova-api nova-cert novnc nova-consoleauth nova-scheduler nova-novncproxy

Prepare a Mysql database for Nova:


mysql -u root -p CREATE DATABASE nova; GRANT ALL ON nova.* TO 'novaUser'@'%' IDENTIFIED BY 'novaPass'; quit;

Now modify authtoken section in the /etc/nova/api-paste.ini file to this:


[filter:authtoken] paste.filter_factory = keystone.middleware.auth_token:filter_factory auth_host = 192.168.100.232 auth_port = 35357 auth_protocol = http admin_tenant_name = service

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

admin_user = nova admin_password = service_pass signing_dirname = /tmp/keystone-signing-nova

Modify the /etc/nova/nova.conf like this:


[DEFAULT] logdir=/var/log/nova state_path=/var/lib/nova lock_path=/run/lock/nova verbose=True api_paste_config=/etc/nova/api-paste.ini scheduler_driver=nova.scheduler.simple.SimpleScheduler s3_host=192.168.100.232 ec2_host=192.168.100.232 ec2_dmz_host=192.168.100.232 rabbit_host=192.168.100.232 cc_host=192.168.100.232 nova_url=http://192.168.100.232:8774/v1.1/ sql_connection=mysql://novaUser:novaPass@192.168.100.232/nova ec2_url=http://192.168.100.232:8773/services/Cloud root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf # Auth use_deprecated_auth=false auth_strategy=keystone keystone_ec2_url=http://192.168.100.232:5000/v2.0/ec2tokens # Imaging service glance_api_servers=192.168.100.232:9292 image_service=nova.image.glance.GlanceImageService # Vnc configuration novnc_enabled=true novncproxy_base_url=http://192.168.100.232:6080/vnc_auto.html novncproxy_port=6080

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

vncserver_proxyclient_address=192.168.100.232 vncserver_listen=0.0.0.0 # Network settings network_api_class=nova.network.quantumv2.api.API quantum_url=http://192.168.100.232:9696 quantum_auth_strategy=keystone quantum_admin_tenant_name=service quantum_admin_username=quantum quantum_admin_password=service_pass quantum_admin_auth_url=http://192.168.100.232:35357/v2.0 libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver # Compute # compute_driver=libvirt.LibvirtDriver # Cinder # volume_api_class=nova.volume.cinder.API osapi_volume_listen_port=5900

Synchronize your database:


nova-manage db sync

Restart nova-* services:


cd /etc/init.d/; for i in $( ls nova-* ); do sudo service $i restart; done

Check for the smiling faces on nova-* services to confirm your installation:
nova-manage service list

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

9. Cinder
Although Cinder is a replacement of the old nova-volume service, its installation is now a seperated from the nova install process. Install the required packages:
apt-get install cinder-api cinder-scheduler cinder-volume iscsitarget iscsitarget-dkms

Configure the iscsi services:


sed -i 's/false/true/g' /etc/default/iscsitarget

Restart the services:


service iscsitarget start service open-iscsi start

Prepare a Mysql database for Cinder:


mysql -u root -p CREATE DATABASE cinder; GRANT ALL ON cinder.* TO 'cinderUser'@'%' IDENTIFIED BY 'cinderPass'; quit;

Configure /etc/cinder/api-paste.ini like the following:


[filter:authtoken] paste.filter_factory = keystone.middleware.auth_token:filter_factory service_protocol = http service_host = 192.168.100.232 service_port = 5000 auth_host = 192.168.100.232

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = cinder admin_password = service_pass

Edit the /etc/cinder/cinder.conf to:


[DEFAULT] rootwrap_config=/etc/cinder/rootwrap.conf sql_connection = mysql://cinderUser:cinderPass@192.168.100.232/cinder api_paste_confg = /etc/cinder/api-paste.ini iscsi_helper=ietadm volume_name_template = volume-%s volume_group = cinder-volumes verbose = True auth_strategy = keystone #osapi_volume_listen_port=5900

Then, synchronize your database:


cinder-manage db sync

Finally, don't forget to create a volumegroup and name it cinder-volumes:


dd if=/dev/zero of=cinder-volumes bs=1 count=0 seek=2G losetup /dev/loop2 cinder-volumes fdisk /dev/loop2 #Type in the followings: n p 1 ENTER ENTER

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

t 8e w

Proceed to create the physical volume then the volume group:


pvcreate /dev/loop2 vgcreate cinder-volumes /dev/loop2

Note: Beware that this volume group gets lost after a system reboot. (Click Here to know how to load it after a reboot) Restart the cinder services:
service cinder-volume restart service cinder-api restart

10. Horizon
To install horizon, proceed like this
apt-get install openstack-dashboard memcached

If you don't like the OpenStack ubuntu theme, you can disabled it and go back to the default look:
nano /etc/openstack-dashboard/local_settings.py #Comment these lines #Enable the Ubuntu theme if it is present. #try: # from ubuntu_theme import * #except ImportError: # pass

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

Reload Apache and memcached:


service apache2 restart; service memcached restart

You can now access your OpenStack 192.168.100.232/horizon with credentials admin:admin_pass. Note: A reboot might be needed for a successful login

11. Adding a compute node


11.1. Preparing the Node
Update your system:
apt-get update apt-get upgrade apt-get dist-upgrade

Install ntp service:


apt-get install ntp

Configure the NTP server to follow the controller node:


sed -i 's/server ntp.ubuntu.com/server 192.168.100.232' /etc/ntp.conf service ntp restart

Install other services:


apt-get install vlan bridge-utils

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

Enable IP_Forwarding:
nano /etc/sysctl.conf #Uncomment net.ipv4.ip_forward=1

11.2.Networking
It's recommended to have two NICs but only one needs to be internet connected:
# Connected to the internet auto eth0 iface eth0 inet static address 192.168.100.250 netmask 255.255.255.0 gateway 192.168.100.1 dns-nameservers 8.8.8.8 # Not connected to internet auto eth1 iface eth1 inet static address 10.10.0.2 netmask 255.255.255.0

11.3 KVM
KVM is needed as the hypervisor that will be used to create virtual machines. Before you install KVM, make sure that your hardware enables virtualization:
apt-get install cpu-checker kvm-ok

Normally you would get a good response. Now, move to install kvm and configure it:

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

apt-get install -y kvm libvirt-bin pm-utils

Edit the cgroup_device_acl array in the /etc/libvirt/qemu.conf file to:


cgroup_device_acl = [ "/dev/null", "/dev/full", "/dev/zero", "/dev/random", "/dev/urandom", "/dev/ptmx", "/dev/kvm", "/dev/kqemu", "/dev/rtc", "/dev/hpet","/dev/net/tun" ]

Delete default virtual bridge


virsh net-destroy default virsh net-undefine default

Enable live migration by updating /etc/libvirt/libvirtd.conf file:


listen_tls = 0 listen_tcp = 1 auth_tcp = "none"

Edit libvirtd_opts variable in /etc/init/libvirt-bin.conf file:


env libvirtd_opts="-d -l"

Edit /etc/default/libvirt-bin file


libvirtd_opts="-d -l"

Restart the libvirt service to load the new values:

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

service libvirt-bin restart

11.4. OpenVSwitch
Install the openVSwitch:
apt-get install -y openvswitch-switch

Create the bridges:


#br-int will be used for integration ovs-vsctl add-br br-int #br-eth1 will be used for VM communication ovs-vsctl add-br br-eth1 ovs-vsctl add-port br-eth1 eth1

11.5. Quantum
We don't need to install the hole quantum server here, just the openVSwitch plugin's agent Install the Quantum openvswitch agent:
apt-get -y install quantum-plugin-openvswitch-agent

Edit the OVS plugin configuration file /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini with:


#Under the database section [DATABASE] sql_connection = mysql://quantumUser:quantumPass@192.168.100.232/quantum #Under the OVS section [OVS]

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

tenant_network_type=vlan network_vlan_ranges = physnet1:1:4094 bridge_mappings = physnet1:br-eth1

Make sure that your rabbitMQ IP in /etc/quantum/quantum.conf is set to the controller node:
rabbit_host = 192.168.100.232

Restart all the services:


service quantum-plugin-openvswitch-agent restart

11.6. Nova
Install nova's required components for the compute node:
apt-get install nova-api-metadata nova-compute-kvm

Now modify authtoken section in the /etc/nova/api-paste.ini file to this:


[filter:authtoken] paste.filter_factory = keystone.middleware.auth_token:filter_factory auth_host = 192.168.100.232 auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = nova admin_password = service_pass signing_dirname = /tmp/keystone-signing-nova

Edit /etc/nova/nova-compute.conf file

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

[DEFAULT] libvirt_type=kvm libvirt_ovs_bridge=br-int libvirt_vif_type=ethernet libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver libvirt_use_virtio_for_bridges=True

Modify the /etc/nova/nova.conf like this:


[DEFAULT] logdir=/var/log/nova state_path=/var/lib/nova lock_path=/run/lock/nova verbose=True api_paste_config=/etc/nova/api-paste.ini scheduler_driver=nova.scheduler.simple.SimpleScheduler s3_host=192.168.100.232 ec2_host=192.168.100.232 ec2_dmz_host=192.168.100.232 rabbit_host=192.168.100.232 cc_host=192.168.100.232 nova_url=http://192.168.100.232:8774/v1.1/ sql_connection=mysql://novaUser:novaPass@192.168.100.232/nova ec2_url=http://192.168.100.232:8773/services/Cloud root_helper=sudo nova-rootwrap /etc/nova/rootwrap.conf # Auth use_deprecated_auth=false auth_strategy=keystone keystone_ec2_url=http://192.168.100.232:5000/v2.0/ec2tokens # Imaging service glance_api_servers=192.168.100.232:9292 image_service=nova.image.glance.GlanceImageService # Vnc configuration

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

novnc_enabled=true novncproxy_base_url=http://192.168.100.232:6080/vnc_auto.html novncproxy_port=6080 vncserver_proxyclient_address=192.168.100.250 vncserver_listen=0.0.0.0 # Network settings network_api_class=nova.network.quantumv2.api.API quantum_url=http://192.168.100.232:9696 quantum_auth_strategy=keystone quantum_admin_tenant_name=service quantum_admin_username=quantum quantum_admin_password=service_pass quantum_admin_auth_url=http://192.168.100.232:35357/v2.0 libvirt_vif_driver=nova.virt.libvirt.vif.LibvirtHybridOVSBridgeDriver linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver firewall_driver=nova.virt.libvirt.firewall.IptablesFirewallDriver # Compute # compute_driver=libvirt.LibvirtDriver # Cinder # volume_api_class=nova.volume.cinder.API osapi_volume_listen_port=5900

Synchronize your database:


nova-manage db sync

Restart nova-* services:


cd /etc/init.d/; for i in $( ls nova-* ); do sudo service $i restart; done

Check for the smiling faces on nova-* services to confirm your installation: open in browser PRO version Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

nova-manage service list

12. Your First VM


To start your first VM, you will need to create networks for it. This is easy using the new Quantum project but we first need to create a new tenant as it is not recommended to play with the admin tenant. Create a new tenant
keystone tenant-create --name project_one

Create a new user and assign the member role to it in the new tenant (keystone role-list to get the appropriate id):

keystone user-create --name=user_one --pass=user_one --tenant-id $put_id_of_project_one --email=user_one@domain keystone user-role-add --tenant-id $put_id_of_project_one --user-id $put_id_of_user_one --role-id $put_id_of_m

Create a new network for the tenant:

quantum net-create --tenant-id $put_id_of_project_one net_proj_one --provider:network_type vlan --provider:phys

Create a new subnet inside the new tenant network:


quantum subnet-create --tenant-id $put_id_of_project_one net_proj_one 10.10.10.0/24

Create a router for the new tenant:


quantum router-create --tenant_id $put_id_of_project_one router_proj_one

Add the router to the subnet:

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

quantum router-interface-add $put_router_proj_one_id_here $put_subnet_id_here

You can now start creating VMs but they will not be accessible from the internet. If you like them to be so, perform the following: Create your external network with the tenant id belonging to the service tenant (keystone tenant-list to get the appropriate id)
quantum net-create --tenant-id $put_id_of_service_tenant ext_net_proj_one --router:external=True

Create a subnet containing your floating IPs:

quantum subnet-create --tenant-id $put_id_of_service_tenant ext_net_proj_one 192.168.100.10/28 --enable_dhcp=Fa

Set the router for the external network:


quantum router-gateway-set $put_router_proj_one_id_here $put_id_of_ext_net_proj_one_here

This is it !, You can now login to your OpenStack dashboard and start creating internet accessible VMs. I Hope you enjoyed this guide, please if you have any feedbacks, don't hesitate.

13. Licensing
OpenStack Folsom Install Guide by Bilel Msekni is licensed under a Creative Commons Attribution 3.0 Unported License.

To view a copy of this license, visit [ http://creativecommons.org/licenses/by/3.0/deed.en_US ].

14. Contacts
Bilel Msekni: bilel.msekni@telecom-sudparis.eu

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

15. Acknowledgment
This work has been based on: Emilien Macchi's Folsom guide [https://github.com/EmilienM/openstack-folsom-guide] OpenStack Documentation [http://docs.openstack.org/trunk/openstack-compute/install/apt/content/] OpenStack Quantum Install [http://docs.openstack.org/trunk/openstack-network/admin/content/ch_install.html]

16. To do
This guide is just a startup. Your suggestions are always welcomed. Some of this guide's needs might be: Define more Quantum configurations to cover all usecases possible see here.

GitHub About Blog Features Contact & Support Training GitHub Enterprise Site Status

Clients GitHub for Mac GitHub for Windows GitHub for Eclipse GitHub Mobile Apps

Tools Gauges: Web analytics Speaker Deck: Presentations Gist: Code snippets Extras Job Board GitHub Shop The Octodex

Documentation GitHub Help Developer API GitHub Flavored Markdown GitHub Pages

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

Terms of Service Privacy Security 2012 GitHub Inc. All rights reserved.

open in browser PRO version

Are you a developer? Try out the HTML to PDF API

pdfcrowd.com

You might also like