You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rya.apache.org by mi...@apache.org on 2017/06/06 19:45:38 UTC

[5/5] incubator-rya git commit: RYA-40 Make example config conform to properties file format Closes #160

RYA-40 Make example config conform to properties file format Closes #160


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

Branch: refs/heads/master
Commit: c9b66c7c3a9845461cfab799a62244bf17c423f1
Parents: 721ba07
Author: Jonathan Wonders <jw...@gmail.com>
Authored: Fri May 19 17:49:55 2017 -0400
Committer: Aaron Mihalik <mi...@alum.mit.edu>
Committed: Fri Jun 2 19:13:01 2017 -0400

----------------------------------------------------------------------
 README.md | 25 ++++++++++++++++++-------
 1 file changed, 18 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-rya/blob/c9b66c7c/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 05bf0e5..deb1973 100644
--- a/README.md
+++ b/README.md
@@ -87,14 +87,23 @@ To point the web.rya war to the appropriate database instance, make a properties
 Here is an example for accumulo:
 
 ```
-instance.name=accumulo  #Accumulo instance name
-instance.zk=localhost:2181  #Accumulo Zookeepers
-instance.username=root  #Accumulo username
-instance.password=secret  #Accumulo pwd
-rya.tableprefix=triplestore_  #Rya Table Prefix
-rya.displayqueryplan=true  #To display the query plan
+# Accumulo instance name
+instance.name=accumulo
+# Accumulo Zookeepers
+instance.zk=localhost:2181
+# Accumulo username
+instance.username=root
+# Accumulo password
+instance.password=secret
+
+# Rya Table Prefix
+rya.tableprefix=triplestore_
+# To display the query plan
+rya.displayqueryplan=true
 ```
 
+Please consult the [Accumulo], [ZooKeeper], and [Hadoop] documentation for help with setting up these prerequisites.
+
 Here is an example for mongoDB (populate user/userpassword if authentication to mongoDB required):
 ```
 rya.displayqueryplan=true
@@ -331,4 +340,6 @@ myRepository.shutDown();
 
 
 [RYA]: http://rya.incubator.apache.org/ 
-
+[Accumulo]: https://accumulo.apache.org/
+[ZooKeeper]: https://zookeeper.apache.org/
+[Hadoop]: http://hadoop.apache.org/