You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by el...@apache.org on 2015/04/09 18:19:14 UTC

[2/3] accumulo git commit: ACCUMULO-3719 Add StrictHostKeyChecking=no to default SSH options

ACCUMULO-3719 Add StrictHostKeyChecking=no to default SSH options

For testing purposes, strict host key verification is probably
overkill. Disable it by default. Users can still override
this on their own if they are concerned about security implications.


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/6605ad41
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/6605ad41
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/6605ad41

Branch: refs/heads/master
Commit: 6605ad415a834a0c5881c7ea526dd5ff42ebfb86
Parents: 29c82db
Author: Josh Elser <el...@apache.org>
Authored: Thu Apr 9 12:03:32 2015 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Thu Apr 9 12:03:32 2015 -0400

----------------------------------------------------------------------
 .../main/java/org/apache/accumulo/cluster/RemoteShellOptions.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/6605ad41/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java
----------------------------------------------------------------------
diff --git a/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java b/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java
index 714096e..822cb82 100644
--- a/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java
+++ b/minicluster/src/main/java/org/apache/accumulo/cluster/RemoteShellOptions.java
@@ -41,7 +41,7 @@ public class RemoteShellOptions {
   public static final String SSH_COMMAND_DEFAULT = "/usr/bin/ssh";
 
   public static final String SSH_OPTIONS_KEY = SSH_PREFIX + "options";
-  public static final String SSH_OPTIONS_DEFAULT = "";
+  public static final String SSH_OPTIONS_DEFAULT = "-o StrictHostKeyChecking=no";
 
   public static final String SSH_USER_KEY = SSH_PREFIX + "user";
   public static final String SSH_USER_DEFAULT = "";