Return-Path: X-Original-To: apmail-ambari-dev-archive@www.apache.org Delivered-To: apmail-ambari-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 1DD5918633 for ; Mon, 22 Jun 2015 21:08:01 +0000 (UTC) Received: (qmail 37250 invoked by uid 500); 22 Jun 2015 21:08:01 -0000 Delivered-To: apmail-ambari-dev-archive@ambari.apache.org Received: (qmail 37233 invoked by uid 500); 22 Jun 2015 21:08:01 -0000 Mailing-List: contact dev-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ambari.apache.org Delivered-To: mailing list dev@ambari.apache.org Received: (qmail 37221 invoked by uid 99); 22 Jun 2015 21:08:00 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Jun 2015 21:08:00 +0000 Date: Mon, 22 Jun 2015 21:08:00 +0000 (UTC) From: "Robert Levas (JIRA)" To: dev@ambari.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (AMBARI-11780) Ambari creation of oozie/conf/adminusers.txt breaks oozie role seperation for Kerberos MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/AMBARI-11780?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Levas resolved AMBARI-11780. ----------------------------------- Resolution: Fixed Commited to branch-2.1 {noformat} commit 11fcc29e6da3849e6c58d2532a263e26e3b277b7 Author: Robert Levas Date: Mon Jun 22 17:03:18 2015 -0400 {noformat} > Ambari creation of oozie/conf/adminusers.txt breaks oozie role seperation for Kerberos > -------------------------------------------------------------------------------------- > > Key: AMBARI-11780 > URL: https://issues.apache.org/jira/browse/AMBARI-11780 > Project: Ambari > Issue Type: Bug > Components: ambari-server > Affects Versions: 2.0.0, 2.0.1, 2.1.0 > Reporter: Robert Levas > Assignee: Robert Levas > Priority: Critical > Labels: kerberos > Fix For: 2.1.0 > > Attachments: AMBARI-11780_01.patch, AMBARI-11780_02.patch > > > Oozie restart from Ambari rewrites oozie/conf/adminusers.txt > To support role separation for Kerberos, we need an additional line added to the end of this file. > The new line is: > {noformat} > oozie-admin > {noformat} > The new file should be generated as: > {code} > # > # Licensed to the Apache Software Foundation (ASF) under one > # or more contributor license agreements. See the NOTICE file > # distributed with this work for additional information > # regarding copyright ownership. The ASF licenses this file > # to you under the Apache License, Version 2.0 (the > # "License"); you may not use this file except in compliance > # with the License. You may obtain a copy of the License at > # > # http://www.apache.org/licenses/LICENSE-2.0 > # > # Unless required by applicable law or agreed to in writing, software > # distributed under the License is distributed on an "AS IS" BASIS, > # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. > # See the License for the specific language governing permissions and > # limitations under the License. > # > # Users should be set using following rules: > # > # One user name per line > # Empty lines and lines starting with '#' are ignored > oozie > oozie-admin > {code} > *Solution* > 1. Replace > {code:title=common-services/OOZIE/4.0.0.2.0/package/templates/adminusers.txt.j2} > {{oozie_user}} > {code} > with > {code:title=common-services/OOZIE/4.0.0.2.0/package/templates/adminusers.txt.j2} > {% if oozie_admin_users %} > {% for oozie_admin_user in oozie_admin_users.split(',') %} > {{oozie_admin_user}} > {% endfor %} > {% endif %} > {code} > 2. Add new property > {code:title=common-services/OOZIE/4.0.0.2.0/configuration/oozie-env.xml} > > oozie_admin_users > oozie, oozie-admin > Oozie admin users. > > {code} > 3. If the admin user list needs to change when enabling Kerberos, oozie-env/oozie_admin_users can be set in Oozie's Kerberos descriptor (kerberos.json). -- This message was sent by Atlassian JIRA (v6.3.4#6332)