一台 Windows 服务器上的 IIS 和 TOMCAT
是否可以在一台 Windows 服务器上并行运行 IIS 和 TOMCAT? 如果是,可能会出现哪些问题?
Is it possible to run an IIS and a TOMCAT on one Windows server parallel?
If yes, which problems could appear?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们在 Windows Server 2008 上运行生产环境,并以 IIS 作为前端,它将请求重定向到 Tomcat 服务器。这是出于身份验证目的。
IIS 正在运行端口 80 和 Tomcat 8080。使用 ISAPI 重定向器,我们不会遇到任何问题,因为 IIS 和 JVM 彼此之间没有任何关系,并且在不同的端口上运行。
在重定向器配置中,您映射应将哪个请求转发到 Tomcat。其余部分将由 IIS 本身处理。这可以使用通配符或简单的正则表达式来完成。
We are running a production environment on Windows Server 2008 with an IIS as frontend, which redirects requests to the Tomcat server. This is for authentication purposes.
IIS is running port 80 and Tomcat 8080. Using the ISAPI Redirector, we are not having any issues, since IIS and JVM doesn't really have anything to do with each other, and run on separate ports.
In the redirector config you map which request should be forwarded to the Tomcat. The remainder will be handled by IIS itself. This can be done using wildcards or simple regexp.