Reputation: 39
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
Upvotes: 2
Views: 1778
Reputation:
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
Upvotes: 0
Reputation: 30994
You can do that by binding the JBoss and the Tomcat to different IP addresses.
Upvotes: 1
Reputation: 2050
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.
Upvotes: 0