JBoss 和单独的 TomCat 在同一台机器上
我需要在同一台机器上安装 JBoss 和在同一端口 (80) 上运行的单独 TomCat。 我可以实现它吗?如何实现? 非常感谢
I need to have on the same machine an installation of JBoss and a separate TomCat running on the same port (80).
Can I realize it and how?
Thank you very much
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过将 JBoss 和 Tomcat 绑定到不同的 IP 地址来实现这一点。
You can do that by binding the JBoss and the Tomcat to different IP addresses.
我建议在 chroot 环境中安装两个 Apache 服务器,监听两个不同的 IP 地址。
然后,您可以在其中一个之上安装 Tomcat,在另一个之上安装 JBoss。
I would suggest installing two Apache servers, in chrooted environments, listenning to two different IP addresses.
You can then install Tomcat on top of one and JBoss on top of the other.
您只需将每个端口更改为不同的端口,它们就会正常工作。
这样你就可以让他们一起工作。
比如这样:
Tomcat: 127.0.0.1:8080
Wildfly: 127.0.0.1:8081
类似的东西,他们会完美地工作
You can just change the ports for every one of them to be different and they will work fine.
So in that way you can make them work together.
such as like that:
Tomcat: 127.0.0.1:8080
Wildfly: 127.0.0.1:8081
something like that and they will work perfectly