Created
February 6, 2014 00:13
-
-
Save chadlung/8836042 to your computer and use it in GitHub Desktop.
Running Barbican with DevStack (pre-Barbican entry into DevStack)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo apt-get update | |
$ sudo apt-get install git -y | |
$ git clone https://github.com/chadlung/devstack.git | |
$ ./devstack/tools/create-stack-user.sh | |
$ mv devstack/ /opt/stack/ | |
$ chown -R stack:stack /opt/stack/devstack/ | |
$ su - stack | |
$ cd /opt/stack/devstack/ | |
# Switch to topic branch | |
$ git checkout Initial-Barbican-Support | |
$ nano local.conf | |
# Add this to the local.conf file | |
[[local|localrc]] | |
enable_service barbican | |
KEYSTONE_TOKEN_FORMAT=UUID | |
DATABASE_PASSWORD=password | |
RABBIT_PASSWORD=password | |
SERVICE_TOKEN=password | |
SERVICE_PASSWORD=password | |
ADMIN_PASSWORD=password | |
$ ./stack.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment