Return-Path: X-Original-To: apmail-hbase-commits-archive@www.apache.org Delivered-To: apmail-hbase-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 3495FC8B7 for ; Mon, 22 Dec 2014 02:18:39 +0000 (UTC) Received: (qmail 93499 invoked by uid 500); 22 Dec 2014 02:18:39 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 93456 invoked by uid 500); 22 Dec 2014 02:18:39 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 93447 invoked by uid 99); 22 Dec 2014 02:18:39 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Dec 2014 02:18:39 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id C8DC99CC7E9; Mon, 22 Dec 2014 02:18:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: misty@apache.org To: commits@hbase.apache.org Message-Id: <021be91bda994eec94cc3235ffee5d66@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-12528 Document the newly introduced params for providing principal and keytabs. Date: Mon, 22 Dec 2014 02:18:38 +0000 (UTC) Repository: hbase Updated Branches: refs/heads/master 51334fb95 -> d9f25e30a HBASE-12528 Document the newly introduced params for providing principal and keytabs. Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/d9f25e30 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/d9f25e30 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/d9f25e30 Branch: refs/heads/master Commit: d9f25e30a1044caf9caaca047f954548c2ea8389 Parents: 51334fb Author: Misty Stanley-Jones Authored: Mon Dec 22 12:18:30 2014 +1000 Committer: Misty Stanley-Jones Committed: Mon Dec 22 12:19:46 2014 +1000 ---------------------------------------------------------------------- src/main/docbkx/ops_mgt.xml | 48 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/d9f25e30/src/main/docbkx/ops_mgt.xml ---------------------------------------------------------------------- diff --git a/src/main/docbkx/ops_mgt.xml b/src/main/docbkx/ops_mgt.xml index 3e38ff7..dedd238 100644 --- a/src/main/docbkx/ops_mgt.xml +++ b/src/main/docbkx/ops_mgt.xml @@ -215,6 +215,54 @@ private static final int ERROR_EXIT_CODE = 4; $ ${HBASE_HOME}/bin/hbase orghapache.hadoop.hbase.tool.Canary -t 600000 +
+ Running Canary in a Kerberos-enabled Cluster + To run Canary in a Kerberos-enabled cluster, configure the following two properties in + hbase-site.xml: + + + hbase.client.keytab.file + + + hbase.client.kerberos.principal + + + Kerberos credentials are refreshed every 30 seconds when Canary runs in daemon + mode. + To configure the DNS interface for the client, configure the following optional + properties in hbase-site.xml. + + + hbase.client.dns.interface + + + hbase.client.dns.nameserver + + + + Canary in a Kerberos-Enabled Cluster + This example shows each of the properties with valid values. + + hbase.client.kerberos.principal + hbase/_HOST@YOUR-REALM.COM + + + hbase.client.keytab.file + /etc/hbase/conf/keytab.krb5 + + +property> + hbase.client.dns.interface + default + + + hbase.client.dns.nameserver + default + + ]]> + +