Jump to: navigation, search

Difference between revisions of "Blazar/Installation using Devstack"

(Installation guide: Update GitHub repo URL)
(Installation guide)
Line 18: Line 18:
  
 
     cd ${DEVSTACK_DIR}
 
     cd ${DEVSTACK_DIR}
     echo "enable_service blazar" >> localrc
+
     echo "enable_service blazar" >> local.conf
     echo "enable_service blazar-a" >> localrc
+
     echo "enable_service blazar-a" >> local.conf
     echo "enable_service blazar-m" >> localrc
+
     echo "enable_service blazar-m" >> local.conf
  
 
5. Run Devstack:
 
5. Run Devstack:
  
 
     ./stack.sh
 
     ./stack.sh

Revision as of 14:16, 12 February 2016

Installation guide

This page includes instructions for Blazar installation using Devstack.

1. Download Devstack:

   git clone https://github.com/openstack-dev/devstack.git

2. Download Blazar:

   git clone https://github.com/openstack/blazar.git

3. Add Blazar files to Devstack:

   cd blazar/contrib/devstack
   DEVSTACK_DIR=../../../devstack
   cp lib/blazar ${DEVSTACK_DIR}/lib
   cp extras.d/70-blazar.sh ${DEVSTACK_DIR}/extras.d

4. Configure devstack to run Blazar by adding blazar, blazar api and blazar manager to the localrc file:

   cd ${DEVSTACK_DIR}
   echo "enable_service blazar" >> local.conf
   echo "enable_service blazar-a" >> local.conf
   echo "enable_service blazar-m" >> local.conf

5. Run Devstack:

   ./stack.sh