Member since
10-14-2016
6
Posts
3
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2741 | 10-14-2016 10:26 PM |
10-15-2016
01:02 PM
1 Kudo
I have cluster with two spark versions, one was installed with cluster, one manually for zeppelin and livy server, no issues.
... View more
10-14-2016
10:26 PM
did you configured Local KDC https://docs.hortonworks.com/HDPDocuments/Ambari-2.4.1.0/bk_ambari-security/content/installing_and_configuring_the_kdc.html If yes, just add user to kdc and before opening web UI, init kerberos credentials of that user: to add user: kadmin.local -q "add_principal user_name" to init credentials: kinit user_name then open browser (works only for linux) in windows there are some problems with SPNEGO
... View more
10-14-2016
10:01 PM
It's normal, you turned on kerberos authentication for web UI's. To open web UI you need to have kerberos credentials! For example in linux, you need to do kinit.
... View more
10-14-2016
05:36 PM
Set that in livy server config, by default that parameter is blacklisted by livy
... View more
10-14-2016
04:25 PM
2 Kudos
here is my working config activeDirectoryRealm = org.apache.zeppelin.server.ActiveDirectoryGroupRealm
activeDirectoryRealm.systemUsername = <ldap_binding_user> (just username without @domain.com)
activeDirectoryRealm.systemPassword = <ldap_binding_password>
activeDirectoryRealm.searchBase = OU=GROUP,DC=DOMAIN,DC=COM
activeDirectoryRealm.url = ldap: //ldap.domain.com:389
activeDirectoryRealm.groupRolesMap = "CN=group,DC=domain,DC=com" : "admin
activeDirectoryRealm.authorizationCachingEnabled = true
activeDirectoryRealm.principalSuffix = @domain .com
securityManager.realms = $activeDirectoryRealm
sessionManager = org.apache.shiro.web.session.mgt.DefaultWebSessionManager
securityManager.sessionManager = $sessionManager
securityManager.sessionManager.globalSessionTimeout = 86400000
shiro.loginUrl = /api/login
... View more