ACCUMULO-2972: fixed description for instance.secret
Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/2165dde6 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/2165dde6 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/2165dde6 Branch: refs/heads/master Commit: 2165dde60827a1b7a9dc7c4c78f8e183bc04b104 Parents: 6d85034 Author: milleruntime <michaelpmil...@gmail.com> Authored: Fri Sep 9 13:53:51 2016 -0400 Committer: milleruntime <michaelpmil...@gmail.com> Committed: Fri Sep 9 13:53:51 2016 -0400 ---------------------------------------------------------------------- core/src/main/java/org/apache/accumulo/core/conf/Property.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/2165dde6/core/src/main/java/org/apache/accumulo/core/conf/Property.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/conf/Property.java b/core/src/main/java/org/apache/accumulo/core/conf/Property.java index 5fff17f..b564825 100644 --- a/core/src/main/java/org/apache/accumulo/core/conf/Property.java +++ b/core/src/main/java/org/apache/accumulo/core/conf/Property.java @@ -123,8 +123,9 @@ public enum Property { @Sensitive INSTANCE_SECRET("instance.secret", "DEFAULT", PropertyType.STRING, "A secret unique to a given instance that all servers must know in order to communicate with one another." - + " Change it before initialization. To change it later use ./bin/accumulo accumulo.server.util.ChangeSecret [oldpasswd] [newpasswd], " - + " and then update conf/accumulo-site.xml everywhere."), + + "Change it before initialization. To change it later use the ChangeSecret tool and then update conf/accumulo-site.xml everywhere." + + "Before using the ChangeSecret tool, make sure Accumulo is not running and you are logged in as the user that controls Accumulo files in HDFS." + + "To use the ChangeSecret tool, run the command: ./bin/accumulo accumulo.server.util.ChangeSecret"), INSTANCE_VOLUMES("instance.volumes", "", PropertyType.STRING, "A comma seperated list of dfs uris to use. Files will be stored across these filesystems. If this is empty, then instance.dfs.uri will be used. " + "After adding uris to this list, run 'accumulo init --add-volume' and then restart tservers. If entries are removed from this list then tservers "