Jump to: navigation, search

Difference between revisions of "Blazar/Installation using Devstack"

m
Line 1: Line 1:
== Installation guide ==
+
This page has been migrate to [http://blazar.readthedocs.io/en/latest/userdoc/installation.guide.html#installation-using-devstack here].
 
 
This page includes instructions for Blazar installation using DevStack.
 
 
 
1. Download DevStack:
 
    git clone https://git.openstack.org/openstack-dev/devstack.git
 
 
 
2. Create a local.conf file in the devstack directory. You can use the following sample local.conf:
 
 
 
    <nowiki>[[local|localrc]]</nowiki>
 
    ADMIN_PASSWORD=password
 
    DATABASE_PASSWORD=$ADMIN_PASSWORD
 
    RABBIT_PASSWORD=$ADMIN_PASSWORD
 
    SERVICE_PASSWORD=$ADMIN_PASSWORD
 
    DEST=/opt/stack/
 
    LOGFILE=$DEST/logs/stack.sh.log
 
    HOST_IP=127.0.0.1
 
    GIT_BASE=<nowiki>https://git.openstack.org/</nowiki>
 
    RECLONE=yes
 
    enable_plugin <nowiki>blazar https://git.openstack.org/openstack/blazar</nowiki>
 
 
 
3. Run DevStack as the stack user:
 
 
 
    ./stack.sh
 
 
 
4. Source the admin credentials:
 
 
 
    . openrc admin admin
 
 
 
5. Now you can add hosts to Blazar:
 
 
 
    climate host-create hostname
 

Revision as of 02:59, 8 March 2017

This page has been migrate to here.