This means that another program has already bind to those ports that Tomcat uses.
Your options are:
- Change the ports of your Apache Tomcat by editing the ${TOMCAT_HOME}/conf/server.xml.
- Shutting down the other program that has bind those ports.
To find and shutdown the other program do the following:
For windows:
- Open a command line.
- Then type "netstat -nao".
- Look for those port numbers, and remember the PID number.
- Open task manager.
- Find the corresponding PID and end those task(s).
For Linux:
- Open a command line.
- Then type "netstat -nap".
- Look for those port numbers, and remember the PID number.
- In the command line type "kill -9 ${PID}" with the PID number.