Jump to: navigation, search

Difference between revisions of "BarbicanDevStack"

(Running Barbican via DevStack)
(Running Barbican via DevStack)
Line 23: Line 23:
 
<pre><nowiki>
 
<pre><nowiki>
 
$ ./stack.sh
 
$ ./stack.sh
 +
</nowiki></pre>
 +
 +
To shutdown Barbican (and it's dependent services) simply run this:
 +
 +
<pre><nowiki>
 +
$ ./unstack.sh
 
</nowiki></pre>
 
</nowiki></pre>
  

Revision as of 18:27, 5 June 2014

Running Barbican via DevStack

Steps to run Barbican via DevStack (assuming Ubuntu 12.04 LTS or Ubuntu 14.04 LTS):

$ sudo apt-get update
$ sudo apt-get install libffi-dev libssl-dev git -y
$ git clone https://github.com/openstack-dev/devstack.git
$ git clone https://github.com/openstack/barbican.git
$ mv barbican/contrib/devstack/lib/barbican devstack/lib/
$ mv barbican/contrib/devstack/local.conf devstack/
$ mv barbican/contrib/devstack/extras.d/70-barbican.sh devstack/extras.d/
$ sudo ./devstack/tools/create-stack-user.sh
$ sudo mv devstack/ /opt/stack/
$ rm -rf barbican/
$ chown -R stack:stack /opt/stack/devstack/
$ su - stack
$ cd /opt/stack/devstack/

This next step will take a while to run but the end result is you should have Barbican running under DevStack:

$ ./stack.sh

To shutdown Barbican (and it's dependent services) simply run this:

$ ./unstack.sh

Note: If you have issues (compute might be throwing some errors - assuming you've enabled compute because we don't by default in the local.conf) you can ease back the firewall. Keep in mind this opens your computer up completely. Only do this if you know what you are doing and if you are having issues. Adjust as needed.

# Flush all firewall rules for DevStack
# (Only do this if you really know what you're doing and have problems running DevStack)
$ iptables -F
$ iptables -P INPUT ACCEPT
$ iptables -P FORWARD ACCEPT
$ iptables -P OUTPUT ACCEPT