Updated Branches: refs/heads/branch-0.8 2e119609c -> 6d2baa0c2
Fix zookeeper recipe filename. Project: http://git-wip-us.apache.org/repos/asf/whirr/repo Commit: http://git-wip-us.apache.org/repos/asf/whirr/commit/6d2baa0c Tree: http://git-wip-us.apache.org/repos/asf/whirr/tree/6d2baa0c Diff: http://git-wip-us.apache.org/repos/asf/whirr/diff/6d2baa0c Branch: refs/heads/branch-0.8 Commit: 6d2baa0c2e90bc43df61e80265c30332b9ef1fd6 Parents: 2e11960 Author: Tom White <tomwh...@apache.org> Authored: Fri Oct 19 10:31:40 2012 +0100 Committer: Tom White <tomwh...@apache.org> Committed: Fri Oct 19 10:31:40 2012 +0100 ---------------------------------------------------------------------- src/site/site.xml | 2 +- src/site/xdoc/whirr-in-5-minutes.xml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/whirr/blob/6d2baa0c/src/site/site.xml ---------------------------------------------------------------------- diff --git a/src/site/site.xml b/src/site/site.xml index cd93afc..0d565a0 100644 --- a/src/site/site.xml +++ b/src/site/site.xml @@ -45,7 +45,7 @@ <breadcrumbs position="left"> <item name="Apache" href="http://www.apache.org/" /> <item name="Whirr" href="http://whirr.apache.org/"/> - <item name="0.8.1-SNAPSHOT" href="http://whirr.apache.org/docs/0.8.1-SNAPSHOT/"/> + <item name="0.8.1" href="http://whirr.apache.org/docs/0.8.1/"/> </breadcrumbs> <menu name="Whirr"> http://git-wip-us.apache.org/repos/asf/whirr/blob/6d2baa0c/src/site/xdoc/whirr-in-5-minutes.xml ---------------------------------------------------------------------- diff --git a/src/site/xdoc/whirr-in-5-minutes.xml b/src/site/xdoc/whirr-in-5-minutes.xml index 9a820f8..516774a 100644 --- a/src/site/xdoc/whirr-in-5-minutes.xml +++ b/src/site/xdoc/whirr-in-5-minutes.xml @@ -31,18 +31,18 @@ export WHIRR_IDENTITY=$AWS_ACCESS_KEY_ID export WHIRR_CREDENTIAL=$AWS_SECRET_ACCESS_KEY # or create ~/.whirr/credentials similar to conf/credentials.sample -curl -O http://www.apache.org/dist/whirr/whirr-0.8.0/whirr-0.8.0.tar.gz -tar zxf whirr-0.8.0.tar.gz; cd whirr-0.8.0 +curl -O http://www.apache.org/dist/whirr/whirr-0.8.1/whirr-0.8.1.tar.gz +tar zxf whirr-0.8.1.tar.gz; cd whirr-0.8.1 ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa_whirr -bin/whirr launch-cluster --config recipes/zookeeper-ec2.properties --private-key-file ~/.ssh/id_rsa_whirr +bin/whirr launch-cluster --config recipes/zookeeper.properties --private-key-file ~/.ssh/id_rsa_whirr echo "ruok" | nc $(awk '{print $3}' ~/.whirr/zookeeper/instances | head -1) 2181; echo </source> <p>Upon success you should see <tt>imok</tt>echoed to the console, indicating that ZooKeeper is running.</p> <p>You can shut down the cluster with</p> - <source>bin/whirr destroy-cluster --config recipes/zookeeper-ec2.properties --private-key-file ~/.ssh/id_rsa_whirr</source> + <source>bin/whirr destroy-cluster --config recipes/zookeeper.properties --private-key-file ~/.ssh/id_rsa_whirr</source> <p>The various options are explained in more detail in the <a href="quick-start-guide.html">Quick Start Guide</a>.</p> </body>