Return-Path: X-Original-To: apmail-hadoop-common-commits-archive@www.apache.org Delivered-To: apmail-hadoop-common-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7BA3718221 for ; Thu, 3 Dec 2015 03:54:39 +0000 (UTC) Received: (qmail 53939 invoked by uid 500); 3 Dec 2015 03:54:39 -0000 Delivered-To: apmail-hadoop-common-commits-archive@hadoop.apache.org Received: (qmail 53870 invoked by uid 500); 3 Dec 2015 03:54:39 -0000 Mailing-List: contact common-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: common-dev@hadoop.apache.org Delivered-To: mailing list common-commits@hadoop.apache.org Received: (qmail 53861 invoked by uid 99); 3 Dec 2015 03:54:39 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Dec 2015 03:54:39 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 038E7E048C; Thu, 3 Dec 2015 03:54:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: aajisaka@apache.org To: common-commits@hadoop.apache.org Message-Id: <6179a0dedf73443091a3276bcd92a969@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hadoop git commit: HADOOP-12565. Replace DSA with RSA for SSH key type in SingleCluster.md. Contributed by Mingliang Liu. Date: Thu, 3 Dec 2015 03:54:38 +0000 (UTC) Repository: hadoop Updated Branches: refs/heads/trunk e8bd1ba74 -> 3857fed2c HADOOP-12565. Replace DSA with RSA for SSH key type in SingleCluster.md. Contributed by Mingliang Liu. Project: http://git-wip-us.apache.org/repos/asf/hadoop/repo Commit: http://git-wip-us.apache.org/repos/asf/hadoop/commit/3857fed2 Tree: http://git-wip-us.apache.org/repos/asf/hadoop/tree/3857fed2 Diff: http://git-wip-us.apache.org/repos/asf/hadoop/diff/3857fed2 Branch: refs/heads/trunk Commit: 3857fed2c8fc601b46e8331f73a3104f4f33e498 Parents: e8bd1ba Author: Akira Ajisaka Authored: Thu Dec 3 11:45:45 2015 +0800 Committer: Akira Ajisaka Committed: Thu Dec 3 11:50:31 2015 +0800 ---------------------------------------------------------------------- hadoop-common-project/hadoop-common/CHANGES.txt | 3 +++ .../hadoop-common/src/site/markdown/SingleCluster.md.vm | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hadoop/blob/3857fed2/hadoop-common-project/hadoop-common/CHANGES.txt ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/CHANGES.txt b/hadoop-common-project/hadoop-common/CHANGES.txt index b19b703..de4dad0 100644 --- a/hadoop-common-project/hadoop-common/CHANGES.txt +++ b/hadoop-common-project/hadoop-common/CHANGES.txt @@ -1524,6 +1524,9 @@ Release 2.7.3 - UNRELEASED HADOOP-12482. Race condition in JMX cache update. (Tony Wu via lei) + HADOOP-12565. Replace DSA with RSA for SSH key type in SingleCluster.md. + (Mingliang Liu via aajisaka) + Release 2.7.2 - UNRELEASED INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/hadoop/blob/3857fed2/hadoop-common-project/hadoop-common/src/site/markdown/SingleCluster.md.vm ---------------------------------------------------------------------- diff --git a/hadoop-common-project/hadoop-common/src/site/markdown/SingleCluster.md.vm b/hadoop-common-project/hadoop-common/src/site/markdown/SingleCluster.md.vm index 2de8b2b..84789f6 100644 --- a/hadoop-common-project/hadoop-common/src/site/markdown/SingleCluster.md.vm +++ b/hadoop-common-project/hadoop-common/src/site/markdown/SingleCluster.md.vm @@ -138,8 +138,8 @@ Now check that you can ssh to the localhost without a passphrase: If you cannot ssh to localhost without a passphrase, execute the following commands: - $ ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa - $ cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys + $ ssh-keygen -t rsa -P '' -f ~/.ssh/id_rsa + $ cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys $ chmod 0600 ~/.ssh/authorized_keys $H3 Execution