Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor changes to README and env.sh.example #124

Merged
merged 3 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ Follow the steps below to run the Accumulo examples:
Accumulo has an [accumulo-client.properties] in `conf/` that must be configured as
the examples will use this file to connect to your instance.

3. Review [env.sh.example] in to see if you need to customize it. If `ACCUMULO_HOME` & `HADOOP_HOME`
are set in your shell, you may be able skip this step. Make sure `ACCUMULO_CLIENT_PROPS` is
set to the location of your [accumulo-client.properties].
3. Review [env.sh.example] and [accumulo-env.sh] (within your accumulo installation) to see if you
need to customize them. If `ACCUMULO_HOME` & `HADOOP_HOME` are set in your shell, you may be
able skip this step. Make sure `ACCUMULO_CLIENT_PROPS` is set to the location of your
[accumulo-client.properties].

cp conf/env.sh.example conf/env.sh
vim conf/env.sh
Expand Down Expand Up @@ -110,6 +111,7 @@ This repository can be used to test Accumulo release candidates. See

[quickstart]: https://accumulo.apache.org/docs/2.x/getting-started/quickstart
[accumulo-client.properties]: https://accumulo.apache.org/docs/2.x/configuration/files#accumulo-clientproperties
[accumulo-env.sh]: https://accumulo.apache.org/docs/2.x/configuration/files#accumulo-envsh
[env.sh.example]: conf/env.sh.example
[manual]: https://accumulo.apache.org/latest/accumulo_user_manual/
[batch]: docs/batch.md
Expand Down
2 changes: 1 addition & 1 deletion conf/env.sh.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ conf_dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
# ===============
# Versions set below will be what is included in the shaded jar
export ACCUMULO_VERSION="`$ACCUMULO_HOME/bin/accumulo version`"
export HADOOP_VERSION="`hadoop version | head -n1 | awk '{print $2}'`"
export HADOOP_VERSION="`$HADOOP_HOME/bin/hadoop version | head -n1 | awk '{print $2}'`"
export ZOOKEEPER_VERSION=3.7.0
# Path to shaded test jar
ex_home=$( cd "$( dirname "$conf_dir" )" && pwd )
Expand Down
Loading