| Title: Apache Accumulo Examples |
| Notice: Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| . |
| http://www.apache.org/licenses/LICENSE-2.0 |
| . |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| |
| Each README in the examples directory highlights the use of particular features of Apache Accumulo. |
| |
| Before running any of the examples, the following steps must be performed. |
| |
| 1. Install and run Accumulo via the instructions found in $ACCUMULO_HOME/README. |
| Remember the instance name. It will be referred to as "instance" throughout the examples. |
| A comma-separated list of zookeeper servers will be referred to as "zookeepers". |
| |
| 2. Create an Accumulo user (see the [user manual][1]), or use the root user. |
| The Accumulo user name will be referred to as "username" with password "password" throughout the examples. |
| This user will need to have the ability to create tables. |
| |
| In all commands, you will need to replace "instance", "zookeepers", "username", and "password" with the values you set for your Accumulo instance. |
| |
| Commands intended to be run in bash are prefixed by '$'. These are always assumed to be run from the $ACCUMULO_HOME directory. |
| |
| Commands intended to be run in the Accumulo shell are prefixed by '>'. |
| |
| [1]: /1.4/user_manual/Accumulo_Shell.html#User_Administration |