You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2017/04/28 08:49:16 UTC

zeppelin git commit: added principalSuffix to AD examples

Repository: zeppelin
Updated Branches:
  refs/heads/master 874403256 -> ec8461365


added principalSuffix to AD examples

### What is this PR for?
Documentation - Adding an example use of prinicpalSuffix to the Active Directory authentication documentation. It took us a while to figure out that the lack of a principalSuffix was our problem and then a bit more hunting to figure out how to automatically include it

### What type of PR is it?
Improvement

### Todos
* [ ] - Task

### What is the Jira issue?
* Open an issue on Jira https://issues.apache.org/jira/browse/ZEPPELIN/
* Put link here, and add [ZEPPELIN-*Jira number*] in PR title, eg. [ZEPPELIN-533]

### How should this be tested?
Outline the steps to test the PR here.

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update?
* Is there breaking changes for older versions?
* Does this needs documentation?

Author: Paul Brenner <pa...@users.noreply.github.com>

Closes #2281 from paul-brenner/patch-1 and squashes the following commits:

2ff57a9 [Paul Brenner] added principalSuffix to AD examples


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

Branch: refs/heads/master
Commit: ec84613657f6494e8a265ee3713a6ef1751115c6
Parents: 8744032
Author: Paul Brenner <pa...@users.noreply.github.com>
Authored: Mon Apr 24 17:35:04 2017 -0400
Committer: Lee moon soo <mo...@apache.org>
Committed: Fri Apr 28 01:49:13 2017 -0700

----------------------------------------------------------------------
 docs/security/shiroauthentication.md | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/ec846136/docs/security/shiroauthentication.md
----------------------------------------------------------------------
diff --git a/docs/security/shiroauthentication.md b/docs/security/shiroauthentication.md
index edf202f..452600d 100644
--- a/docs/security/shiroauthentication.md
+++ b/docs/security/shiroauthentication.md
@@ -78,6 +78,7 @@ activeDirectoryRealm.searchBase = CN=Users,DC=SOME_GROUP,DC=COMPANY,DC=COM
 activeDirectoryRealm.url = ldap://ldap.test.com:389
 activeDirectoryRealm.groupRolesMap = "CN=aGroupName,OU=groups,DC=SOME_GROUP,DC=COMPANY,DC=COM":"group1"
 activeDirectoryRealm.authorizationCachingEnabled = false
+activeDirectoryRealm.principalSuffix = @corp.company.net
 
 ldapRealm = org.apache.zeppelin.server.LdapGroupRealm
 # search base for ldap groups (only relevant for LdapGroupRealm):
@@ -114,6 +115,7 @@ activeDirectoryRealm.searchBase = CN=Users,DC=SOME_GROUP,DC=COMPANY,DC=COM
 activeDirectoryRealm.url = ldap://ldap.test.com:389
 activeDirectoryRealm.groupRolesMap = "CN=aGroupName,OU=groups,DC=SOME_GROUP,DC=COMPANY,DC=COM":"group1"
 activeDirectoryRealm.authorizationCachingEnabled = false
+activeDirectoryRealm.principalSuffix = @corp.company.net
 ```