kareda: > I need to have Tomcat running on a win2003 server that also has IIS running. > IIS uses port 80. > I have changed the port in connector element in server.xml: > > <Connector port="90" protocol="HTTP/1.1" > connectionTimeout="20000" > redirectPort="8493" > address="87.230.103.25" /> > > But still when I run tomcat I get the error: > Address already in use: JVM_Bind /87.230.103.25:80 > > How can I have tomcat not to bind to port 80 on startup?
You did the right thing. If Tomcat still tries to bind to port 80, make sure that a) there's no other <Connector> configured to listen on port 80, b) Tomcat really uses the server.xml that you modified. Additionally you can take a look at the logs. Also, if you start Tomcat by issuing catalina.bat run the console will stay open, allowing you to see Tomcat's startup messages. Regards mks --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org