I am aware of using netstat cmd in unix to find out the ports that are in use. But I am wondering how to determine the range of available apache tomcat listener ports to deploy an HTTP web application ?
Asked
Active
Viewed 2,671 times
1 Answers
2
Tomcat will run on whatever port you set it to run on. The max port number is 65535. Normal http ports are 80 and 8080.
To change your Tomcat port see this answer: How to change tomcat port number
For more on port numbers see: What is the largest TCP/IP network port number allowable for IPv4?