From 17349ff022e7ad05b6a45c999832437c5788c2c5 Mon Sep 17 00:00:00 2001 From: Jedrzej Nowak Date: Fri, 4 Sep 2015 14:05:17 +0200 Subject: [PATCH] Added riak example README --- examples/riak/README.md | 44 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 examples/riak/README.md diff --git a/examples/riak/README.md b/examples/riak/README.md new file mode 100644 index 0000000..e639474 --- /dev/null +++ b/examples/riak/README.md @@ -0,0 +1,44 @@ +Example of 3 node riak cluster. + +At first run: + +`python riak-example.py deploy` + +It will prepare riak nodes etc. + +Then you can continue with standard solar things: + +``` +solar changes stage -d +solar changes process +solar changes run-once last +watch -n 1 solar changes report last +``` + +After that you can add HAProxy on each node: + +`python riak-example.py add_haproxies` + +Then again normal solar stuff + +``` +solar changes stage -d +solar changes process +solar changes run-once last +watch -n 1 solar changes report last +``` + +After that you have basic 3 node riak cluster running. + +You can also modify riak http port by: + +`solar resource update riak_service1 riak_port_http=18100` + +And then again standard stuff: + +``` +solar changes stage -d +solar changes process +solar changes run-once last +watch -n 1 solar changes report last +```