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/fluo-uno.git


The following commit(s) were added to refs/heads/master by this push:
     new 771405c  Added instruction in the docs/centos7.md file (#213)
771405c is described below

commit 771405c40826b59d05bfabbc3da76a9d09663f21
Author: Jeffrey Zeiberg <[email protected]>
AuthorDate: Thu Jan 10 10:52:44 2019 -0500

    Added instruction in the docs/centos7.md file (#213)
    
    Added instructions to make the authorized_keys file read/write for user so 
ssh to localhost will work. It is set 664 by default with the instructions we 
give.  This will cause ssh localhost to  prompt for passphase.  If you don't 
check the ssh setup setup after running the commands in centos.md and go right 
to the Quickstart commands ssh won't work. The command uno setup accumulo will 
let you think everything went well but it did not.
---
 docs/centos7.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/docs/centos7.md b/docs/centos7.md
index 438b301..8f18896 100644
--- a/docs/centos7.md
+++ b/docs/centos7.md
@@ -10,6 +10,7 @@ sudo yum group install "Development Tools"
 ssh-keygen -t rsa -N '' -f ~/.ssh/id_rsa
 ssh-keyscan -H localhost >> ~/.ssh/known_hosts
 cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
+chmod 0600 ~/.ssh/authorized_keys
 
 #add java home to your env by appending this line to ~/.bashrc
 export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk

Reply via email to