如何在 Tomcat 上调试 SPNEGO
我已经在 tomcat 中设置了 SPNEGO。
我收到消息“将 NTLM 请求降级为基本身份验证”。并提示客户端输入用户名和密码。
但我想要单点登录。
我该如何调试这个?
I have setup SPNEGO in tomcat.
I am getting the message "Downgrade NTLM request to Basic Auth." and the client is prompted for user name and password.
But I want single sign on.
How can I debug this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
SPNEGO 已启动并正在运行。显然你不知道 SPNEGO 到底是什么。它只是封装了几种技术。例如,Kerberos 或 NTLM 垃圾。由于您的服务器不支持 Kerberos,因此它出于某种原因尝试 NTLM。仔细检查你的环境。
SPNEGO is up and running. Obviously you don't know what SPNEGO exactly is. It simply wraps several technologies. E.g, Kerberos or NTLM crap. Since your server does not support Kerberos, it tries NTLM for some reason. double-check your env.
您没有在与 Tomcat 相同的主机上使用浏览器,对吗? SPNEGO 不在本地工作;仅远程。这是首先要检查的事情,尽管可能还有其他原因。
You aren't using a browser on the same host as your Tomcat, right? SPNEGO does not work locally; only remotely. This is the first thing to check, although there might be other reasons.