Return-Path: X-Original-To: apmail-ambari-commits-archive@www.apache.org Delivered-To: apmail-ambari-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 BE75D177F7 for ; Fri, 6 Feb 2015 15:26:13 +0000 (UTC) Received: (qmail 22245 invoked by uid 500); 6 Feb 2015 15:26:13 -0000 Delivered-To: apmail-ambari-commits-archive@ambari.apache.org Received: (qmail 22211 invoked by uid 500); 6 Feb 2015 15:26:13 -0000 Mailing-List: contact commits-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@ambari.apache.org Delivered-To: mailing list commits@ambari.apache.org Received: (qmail 22201 invoked by uid 99); 6 Feb 2015 15:26:13 -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; Fri, 06 Feb 2015 15:26:13 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 5FBE7E01CE; Fri, 6 Feb 2015 15:26:13 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: vbrodetskyi@apache.org To: commits@ambari.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: ambari git commit: AMBARI-9513. Kerberos Wizard: Supervisor Start failed (Storm).(vbrodetskyi) Date: Fri, 6 Feb 2015 15:26:13 +0000 (UTC) Repository: ambari Updated Branches: refs/heads/trunk b3799508d -> b45d4706d AMBARI-9513. Kerberos Wizard: Supervisor Start failed (Storm).(vbrodetskyi) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/b45d4706 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/b45d4706 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/b45d4706 Branch: refs/heads/trunk Commit: b45d4706dea969b3783ce84d47672e0825220ddc Parents: b379950 Author: Vitaly Brodetskyi Authored: Fri Feb 6 16:24:10 2015 +0200 Committer: Vitaly Brodetskyi Committed: Fri Feb 6 16:24:10 2015 +0200 ---------------------------------------------------------------------- .../STORM/0.9.1.2.1/kerberos.json | 33 +++++++++++++++++--- 1 file changed, 29 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/b45d4706/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/kerberos.json ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/kerberos.json b/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/kerberos.json index 42c3df9..66e57c0 100644 --- a/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/kerberos.json +++ b/ambari-server/src/main/resources/common-services/STORM/0.9.1.2.1/kerberos.json @@ -13,7 +13,7 @@ "name": "storm_components", "principal": { "value": "storm/_HOST@${realm}", - "type" : "service", + "type": "service", "configuration": "storm-env/storm_principal_name" }, "keytab": { @@ -52,7 +52,7 @@ "name": "nimbus_server", "principal": { "value": "nimbus/_HOST@${realm}", - "type" : "service", + "type": "service", "configuration": "storm-env/nimbus_principal_name" }, "keytab": { @@ -77,7 +77,7 @@ "name": "nimbus_server", "principal": { "value": "nimbus/_HOST@${realm}", - "type" : "service", + "type": "service", "configuration": "storm-env/nimbus_principal_name" }, "keytab": { @@ -94,8 +94,33 @@ } } ] + }, + { + "name": "SUPERVISOR", + "identities": [ + { + "name": "storm_components", + "principal": { + "value": "storm/_HOST@${realm}", + "type": "service", + "configuration": "storm-env/storm_principal_name" + }, + "keytab": { + "file": "${keytab_dir}/storm.service.keytab", + "owner": { + "name": "${storm-env/storm_user}", + "access": "r" + }, + "group": { + "name": "${cluster-env/user_group}", + "access": "" + }, + "configuration": "storm-env/storm_keytab" + } + } + ] } ] } ] -} \ No newline at end of file +}