最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

spring - How to pass principal and key tab file programmatically when connecting SQL through Kerberos authentication java - Stac

programmeradmin1浏览0评论

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.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论