一台 Windows 服务器上的 IIS 和 TOMCAT

发布于 2024-12-27 09:52:22 字数 60 浏览 0 评论 0原文

是否可以在一台 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一场春暖 2025-01-03 09:52:22

我们在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文