You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@helix.apache.org by zz...@apache.org on 2013/09/03 19:37:50 UTC

git commit: [HELIX-228] fix errors in quick start wiki page, rb=13940

Updated Branches:
  refs/heads/master 19c684174 -> 84fb26bd8


[HELIX-228] fix errors in quick start wiki page, rb=13940


Project: http://git-wip-us.apache.org/repos/asf/incubator-helix/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-helix/commit/84fb26bd
Tree: http://git-wip-us.apache.org/repos/asf/incubator-helix/tree/84fb26bd
Diff: http://git-wip-us.apache.org/repos/asf/incubator-helix/diff/84fb26bd

Branch: refs/heads/master
Commit: 84fb26bd8a7ecc34cbea6951451c1d821279e011
Parents: 19c6841
Author: zzhang <zz...@uci.edu>
Authored: Tue Sep 3 10:37:42 2013 -0700
Committer: zzhang <zz...@uci.edu>
Committed: Tue Sep 3 10:37:42 2013 -0700

----------------------------------------------------------------------
 src/site/markdown/Quickstart.md | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-helix/blob/84fb26bd/src/site/markdown/Quickstart.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/Quickstart.md b/src/site/markdown/Quickstart.md
index 574f98b..1cc61e3 100644
--- a/src/site/markdown/Quickstart.md
+++ b/src/site/markdown/Quickstart.md
@@ -27,7 +27,7 @@ First, let\'s get Helix, either build it, or download.
     git clone https://git-wip-us.apache.org/repos/asf/incubator-helix.git
     cd incubator-helix
     git checkout tags/helix-0.6.1-incubating
-    mvn install package -DskipTests 
+    ./build
     cd helix-core/target/helix-core-pkg/bin //This folder contains all the scripts used in following sections
     chmod +x *
 
@@ -51,7 +51,7 @@ Helix provides command line interfaces to set up the cluster and view the cluste
 If you built the code
 
 ```
-cd helix/incubator-helix/helix-core/target/helix-core-pkg/bin
+cd incubator-helix/helix-core/target/helix-core-pkg/bin
 ```
 
 If you downloaded the release package, extract it.
@@ -73,7 +73,7 @@ You can observe the components working together in this demo, which does the fol
 ##### Run the demo
 
 ```
-cd helix/incubator-helix/helix-core/target/helix-core-pkg/bin
+cd incubator-helix/helix-core/target/helix-core-pkg/bin
 ./quickstart.sh
 ```
 
@@ -375,8 +375,8 @@ ExternalView for myDB:
 
 Now, let\'s look at one of the partitions:
 
-    ## helix-admin.sh --zkSvr <zk_address> --listResourceInfo <clusterName> <partition> 
-    ./helix-admin.sh --zkSvr localhost:2199 --listResourceInfo mycluster myDB_0
+    ## helix-admin.sh --zkSvr <zk_address> --listPartitionInfo <clusterName> <resource> <partition> 
+    ./helix-admin.sh --zkSvr localhost:2199 --listPartitionInfo MYCLUSTER myDB myDB_0
 
 #### Expand the Cluster