访问 Oracle Weblogic 10.3.3 上部署的 Web 应用程序时出现 HTTP 302 错误
我已经使用以下 URL
http://xx.xx.xx 在 weblogic 上部署了 war。 xx:6767/em/index.html
我的思科负载均衡器探测以下 URL
并在收到 http 200 响应时使我的服务器状态变为活动状态。
但目前weblogic正在提供302状态代码。
我无法确定它为什么这样做?
我通过浏览器检查了上面两个 URL,它工作正常。
问候, 伊姆兰
I have deployed war on weblogic with following URL
http://xx.xx.xx.xx:6767/em/index.html
My cisco loadbalancer probe following URL
and on getting http 200 response it make status of my servers to active.
But currently weblogic is providing 302 status code.
I am unable to identify why it doing so?
I check above both URL through browser and its working fine.
Regards,
imran
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HTTP 302 响应不是错误。只有4nn(客户端)和5nn(服务器)是错误的。 302 只是意味着响应被重定向到另一个 URL。网络服务器显然正在重定向 http://xx.xx.xx.xx:6767/em 到 http://xx.xx.xx.xx:6767/em/ 或 http://xx.xx.xx.xx:6767/em /index.html。
您只需要让负载均衡器探测 http://xx.xx.xx.xx:6767 /em/ 或 http://xx.xx.xx。 xx:6767/em/index.html。
另请参阅:
A HTTP 302 response is not an error. Only 4nn (client) and 5nn (server) are errors. A 302 simply means that the response is been redirected to another URL. The webserver is apparently redirecting http://xx.xx.xx.xx:6767/em to http://xx.xx.xx.xx:6767/em/ or http://xx.xx.xx.xx:6767/em/index.html.
You just need to let your loadbalancer probe http://xx.xx.xx.xx:6767/em/ or http://xx.xx.xx.xx:6767/em/index.html.
See also: