Reputation: 73
I have multiple installation of standalone apache tomcat web servers and would like to run them parallely. However, I am facing port conflict. Please point me where I can update the port.
Upvotes: 1
Views: 53
Reputation: 3015
You could change the default port (8080) in <tomcat-install-dir>/conf/server.xml
under connector xml element. Replace it with something like 8081.
Upvotes: 1