admin管理员组文章数量:1346317
I am trying connecting MSSQL via JDBC with Kerberos authentication and I was success when I configured in the following way as through jvm arguments.
-Djava.security.krb5.conf=$SECURITY_KRB5_CONF -Djava.security.auth.login.config=$SECURITY_JAAS_CONF
As I am getting keytab file on the fly I can not use JAAS congf as JVM parameter and instead passing parameters in the following way at the place where I am trying to get JDBC connection but it is not considering the Principal which passed over instead it trying to authenticate with system logged in user@Realm.
if (authType.contains(AuthenticationType.KERBEROS.getAuthType())) {
String spn = userNAME
String keytabFile = ***
System.setProperty("java.security.krb5.conf", krb5ConfLocation);
System.setProperty("javax.security.auth.useSubjectCredsOnly", "false");
System.setProperty("java.security.auth.login.module.spi", "com.sun.security.auth.module.Krb5LoginModule");
System.setProperty("principal", spn);
System.setProperty("javax.security.auth.login.config",keytabFile);
//System.setProperty("sun.security.krb5.debug", krb5Debug);
}
return connection = DriverManager.getConnection(jdbcURL,jdbcProps);
}
Any help would be greatly appreciated here.
本文标签:
版权声明:本文标题:spring - How to pass principal and key tab file programmatically when connecting SQL through Kerberos authentication java - Stac 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743829831a2546319.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论