You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mw...@apache.org on 2019/12/17 14:07:40 UTC

[accumulo-proxy] branch master updated: Updated instructions in README (#12)

This is an automated email from the ASF dual-hosted git repository.

mwalch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-proxy.git


The following commit(s) were added to refs/heads/master by this push:
     new b665bf4  Updated instructions in README (#12)
b665bf4 is described below

commit b665bf4b13182e35aeb1d7704a939e8303e2af19
Author: Mike Walch <mw...@apache.org>
AuthorDate: Tue Dec 17 09:07:32 2019 -0500

    Updated instructions in README (#12)
    
    * The -c option is no longer exists as all accumulo-client.properties
      now reside in proxy.properties
    * thrift must be installed to use Python client
---
 README.md | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 9740a2b..63bcb56 100644
--- a/README.md
+++ b/README.md
@@ -34,11 +34,11 @@ Thrift language binding).
     tar xzvf ./target/accumulo-proxy-2.0.0-SNAPSHOT-bin.tar.gz -C /path/to/install
     ```
 
-2. Edit `proxy.properties` and `accumulo-client.properties` and run the proxy.
+2. Edit `proxy.properties` and run the proxy.
 
     ```
     cd /path/to/install/accumulo-proxy-2.0.0-SNAPSHOT
-    ./bin/accumulo-proxy -p conf/proxy.properties -c $ACCUMULO_HOME/conf/accumulo-client.properties
+    ./bin/accumulo-proxy -p conf/proxy.properties
     ```
 
 # Build language specific bindings
@@ -60,6 +60,7 @@ Run the commands below to install the Python bindings and create an example clie
 mkdir accumulo-client/
 cd accumulo-client/
 pipenv --python 2.7
+pipenv install thrift
 pipenv install -e /path/to/accumulo-proxy/src/main/python
 cp /path/to/accumulo-proxy/src/main/python/example.py .
 # Edit credentials if needed