Jump to: navigation, search

Difference between revisions of "BarbicanDevStack"

(The Easy Way)
(The Easy Way)
Line 50: Line 50:
 
https://gist.github.com/rm-you/6feacb91182f5c011018
 
https://gist.github.com/rm-you/6feacb91182f5c011018
  
<nowiki>bash <(curl -sL https://gist.githubusercontent.com/rm-you/6feacb91182f5c011018/raw/ae005180ca805960fd35d76068a5b97167ba34a2/setup.sh)</nowiki>
+
<nowiki>bash <(curl -sL https://gist.githubusercontent.com/rm-you/6feacb91182f5c011018/raw/f88f7f48923dee87fcd5d3f632885744aa606ca5/setup.sh)</nowiki>

Revision as of 20:25, 4 March 2015

Running Barbican via DevStack

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

Note: Due to the amount of dependencies and configuration performed by the DevStack process, we suggest running DevStack from a dedicated/temporary virtual machine rather than your local workstation.

$ 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

The Easy Way

Last Updated: Feb. 3, 2015

This script will set up Devstack with Barbican (when run on a clean Ubuntu 14.04 VM), then run the Barbican functional tests. https://gist.github.com/rm-you/6feacb91182f5c011018

bash <(curl -sL https://gist.githubusercontent.com/rm-you/6feacb91182f5c011018/raw/f88f7f48923dee87fcd5d3f632885744aa606ca5/setup.sh)