如何在tomcat下重新加载kerberos配置?
我的应用程序在tomcat下运行。 它使用 GSS API (JNDI) 通过 Kerberos 连接到 Active Directory LDAP 服务器。 它允许用户定义 AD 服务器并尝试连接到它们。 但是,一旦完成第一次使用 Kerberos 的连接尝试,应用程序就不会再次读取 Kerberos 配置 (/etc/krb5.conf
)。 因此,对其进行任何更改都需要重新启动 tomcat。
我怎样才能避免这样的重启? 如何强制应用程序在每次连接尝试之前重新加载 Kerberos 配置?
My application runs under tomcat.
It is using GSS API (JNDI) to connect to Active Directory LDAP Server using Kerberos.
It allows the user to define AD servers and try to connect to them.
However, once the first Kerberos using connect attempt is done, the application does not read Kerberos configuration again (/etc/krb5.conf
).
Hence, any change to it requires a restart of tomcat.
How can I avoid such a restart ? How can I force the application to reload Kerberos configuration before each connect attempt ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也面临着同样的问题! 请参阅此相关的 StackOverflow 帖子,希望上面的链接有所帮助。
在 JAVA 中重新加载 Kerberos 配置而不重新启动 JVM
I was facing the same problem too! See this related StackOverflow post, hope the above link helps.
Reload Kerberos config in JAVA without restarting JVM