Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

...

Riak CS is an open source object storage system that provides an S3 compatible API. The following steps will create a local Riak CS virtual machine on Ubuntu 12.04.2:

  1. git clone https://github.com/basho/vagrant-riak-cs-cluster.gitImage Removed
  2. cd vagrant-riak-cs-cluster && git checkout v2.0.0
  3. RIAK_CS_CREATE_ADMIN_USER=1 vagrant up => make a note of the access key and secret key at the end of the Vagrant log

...

OpenStack Swift is OpenStack's open source object storage system. The OpenStack community provides Devstack infrastructure to created local OpenStack environments. A pending patch wraps Vagrant around this mechanism to quickly create local virtual machines with it. Finally, by default, Devstack does not enable Swift. The following steps will create a local Devstack virtual machine that includes a Swift instance:

  1. git clone https://github.com/jburwell/devstackImage Removed
  2. cd devstack
  3. Create a file name "vagrant-overrides.conf" that contains the following:
    enabled_services=swift
    swift_hash=66a3d6b56c1f479c8b4e70ab5c2000f5
    swift_replicas=1
    swift_data_dir=$DEST/data
  4. vagrant up
    Footnote
    Wiki Markup
    {footnote}A Vagrant Devstack provision downloads roughly 300 MB of data.  Dependent on available bandwidth, this step may take a long time to complete.{footnote}
    A Vagrant Devstack provision downloads roughly 300 MB of data. Dependent on available bandwidth, this step may take a long time to complete.

Following completion of these steps, Swift will be available on 10.0.3.50 and can be validated through the Horizon interface available at http://10.0.3.50Image Removed..

Wiki Markup
{display-footnotes}