Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
1.0.0, 1.1.0, 0.8.4, 1.2.0, 2.0.0, 2.1.0
-
linux
-
Patch, Important
-
this is a simple bug to be fixed , I have already pull a request on github, number is #114
Description
According to the user's manual from http://atlas.apache.org/, properties for kerberos should be:
atlas.authentication.method.kerberos.principal=
atlas.authentication.method.kerberos.keytab =
But , in the codes(LoginProcessor.java), paths are below:
public static final String AUTHENTICATION_PRINCIPAL = ATLAS_AUTHENTICATION_PREFIX+ "principal";
public static final String AUTHENTICATION_KEYTAB = ATLAS_AUTHENTICATION_PREFIX+ "keytab";
that are :atlas.authentication.principal & atlas.authentication.keytab
so, the properties for kerberos couldn't be get correctly!