Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 18B72200C88 for ; Fri, 2 Jun 2017 22:08:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 18031160BD2; Fri, 2 Jun 2017 20:08:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5DE29160BBA for ; Fri, 2 Jun 2017 22:08:04 +0200 (CEST) Received: (qmail 85084 invoked by uid 500); 2 Jun 2017 20:08:03 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 85075 invoked by uid 99); 2 Jun 2017 20:08:03 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jun 2017 20:08:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 62DADDFB01; Fri, 2 Jun 2017 20:08:03 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: mwalch@apache.org To: commits@accumulo.apache.org Message-Id: <526c7908a701403f8c829186e7ca89ce@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: accumulo git commit: ACCUMULO-4646 Updates to INSTALL.md Date: Fri, 2 Jun 2017 20:08:03 +0000 (UTC) archived-at: Fri, 02 Jun 2017 20:08:05 -0000 Repository: accumulo Updated Branches: refs/heads/master d877a2df2 -> 66178ad87 ACCUMULO-4646 Updates to INSTALL.md Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/66178ad8 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/66178ad8 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/66178ad8 Branch: refs/heads/master Commit: 66178ad87eb0c8d167fa9917b05c4e4f960912c7 Parents: d877a2d Author: Mike Walch Authored: Fri Jun 2 12:01:07 2017 -0400 Committer: Mike Walch Committed: Fri Jun 2 12:14:50 2017 -0400 ---------------------------------------------------------------------- INSTALL.md | 33 +++++++++++++++++---------------- 1 file changed, 17 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/66178ad8/INSTALL.md ---------------------------------------------------------------------- diff --git a/INSTALL.md b/INSTALL.md index ed82fa2..5a44434 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -17,12 +17,13 @@ limitations under the License. # Installing Accumulo -This document covers installing Accumulo on single and multi-node environments. -Either [download][1] or [build][2] a binary distribution of Accumulo from -source code. Unpack as follows. +This document provides basic instructions for installing Accumulo. For detailed instructions, +see the 'In-depth Installation' guide in the Accumulo documentation on the project website. - cd - tar xzf /accumulo-X.Y.Z-bin.tar.gz +Either [download] or [build] a binary distribution of Accumulo from source code and +unpack as follows. + + tar xzf /path/to/accumulo-X.Y.Z-bin.tar.gz cd accumulo-X.Y.Z There are four scripts in the `bin` directory of the tarball distribution that are used @@ -38,7 +39,7 @@ For convenience, consider adding `accumulo-X.Y.Z/bin/` to your shell's path. ## Configuring Accumulo -Accumulo requires running [Zookeeper][3] and [HDFS][4] instances which should be set up +Accumulo requires running [Zookeeper] and [HDFS] instances which should be set up before configuring Accumulo. The primary configuration files for Accumulo are `accumulo-env.sh` and `accumulo-site.xml` @@ -156,11 +157,11 @@ in `conf/` should be configured with a newline separated list of node names: The Accumulo, Hadoop, and Zookeeper software should be present at the same location on every node. Also the files in the `conf` directory must be copied to every node. There are many ways to replicate the software and configuration, -two possible tools that can help replicate software and/or config are [pdcp][5] -and [prsync][6]. +two possible tools that can help replicate software and/or config are [pdcp] +and [prsync]. The `accumulo-cluster` script uses ssh to start processes on remote nodes. Before -attempting to start Accumulo, [passwordless ssh][7] must be setup on the cluster. +attempting to start Accumulo, [passwordless ssh][pwl] must be setup on the cluster. #### Start cluster @@ -186,10 +187,10 @@ When finished, use the following commands to stop Accumulo: * Stop Accumulo service: `accumulo-service tserver stop` * Stop Accumulo cluster: `accumulo-cluster stop` -[1]: http://accumulo.apache.org/ -[2]: README.md#building- -[3]: http://zookeeper.apache.org/ -[4]: http://http://hadoop.apache.org/ -[5]: https://code.google.com/p/pdsh/ -[6]: https://code.google.com/p/parallel-ssh/ -[7]: https://www.google.com/search?q=hadoop+passwordless+ssh&ie=utf-8&oe=utf-8 +[download]: https://accumulo.apache.org/downloads/ +[build]: README.md#building +[Zookeeper]: https://zookeeper.apache.org/ +[HDFS]: https://hadoop.apache.org/ +[pdcp]: https://code.google.com/p/pdsh/ +[prsync]: https://code.google.com/p/parallel-ssh/ +[pwl]: https://www.google.com/search?q=hadoop+passwordless+ssh&ie=utf-8&oe=utf-8