Default port it uses 8080 .In order to change your tomcat port setting you
have to modify in server.xml which reside at /conf
Change the port no there and save it and restart the tomcat server.After
restarting the server new port is going to be used
Default port for http request is 80 so better to
Use netstat to see what ports are open for listening. Versions vary, but
I use netstat -tlnp .
The option definitions for Mandriva Linux are:
-t = tcp connections
-l = listening ports
-n = numeric only (don't lookup domain and service names)
-p = show what process is attached to the port
-David
Typically one would look in the Connector statement in your
/conf/server.xml file. For Tomcat 5.5.15 it is something
similar to:
In this case you could access Tomcat on port 8080 - i.e.
http://localhost:8080/
HTH - Richard
-Original Message-
From: bhavik shah [mailto:[EMAIL PROTEC