Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf/shiro.ini.template
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ user3 = password4, role2
#activeDirectoryRealm = org.apache.zeppelin.realm.ActiveDirectoryGroupRealm
#activeDirectoryRealm.systemUsername = userNameA

#use either systemPassword or hadoopSecurityCredentialPath, more details in http://zeppelin.apache.org/docs/latest/security/shiroauthentication.html
#use either systemPassword or hadoopSecurityCredentialPath, more details in https://zeppelin.apache.org/docs/latest/setup/security/shiro_authentication.html
#activeDirectoryRealm.systemPassword = passwordA
#activeDirectoryRealm.hadoopSecurityCredentialPath = jceks://file/user/zeppelin/zeppelin.jceks
#activeDirectoryRealm.searchBase = CN=Users,DC=SOME_GROUP,DC=COMPANY,DC=COM
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ protected boolean isAccessAllowed(
} else {
LOGGER.error(
"Looks like this filter is enabled without enabling KnoxJwtRealm, please refer"
+ " to https://zeppelin.apache.org/docs/latest/security/shiroauthentication.html"
+ "#knox-sso");
+ " to https://zeppelin.apache.org/docs/latest/setup/security/"
+ "shiro_authentication.html#knox-sso");
}
}
return accessAllowed;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ public void doFilterInternal(ServletRequest request,
kerberosRealm.doKerberosAuth(request, response, filterChain);
} else {
LOGGER.error("Looks like this filter is enabled without enabling KerberosRealm, please refer"
+ " to https://zeppelin.apache.org/docs/latest/security/shiroauthentication.html"
+ "#kerberos-auth");
+ " to https://zeppelin.apache.org/docs/latest/setup/security/shiro_authentication.html"
+ "#http-spnego-authentication");
}
}
}