ricknroll88
ricknroll88

Reputation: 39

JBoss and a separate TomCat on the same machine

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

Answers (3)

user8529149
user8529149

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

Heiko Rupp
Heiko Rupp

Reputation: 30994

You can do that by binding the JBoss and the Tomcat to different IP addresses.

Upvotes: 1

Silver Quettier
Silver Quettier

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

Related Questions