Y.W.Yang wrote: > Tomcat works well on my pc since the first configuration. But recently, I > can't start Tomcat through Elipse, "the ports required by tomcat are used > by other processes, or tomcat are started in other processes". Even > http://localhost:8080 doesn't work! I checked the port, no process use the > port for tomcat (8080), and tomcat is not in the active process list. Is > there somebody can help on that? Thanks a lot.
8080 is almost certainly not the only port Tomcat wants to bind to. There's also the shutdown port - by default 8005 - and maybe the AJP port - by default 8009. Your server.xml will show which ports Tomcat is actually configured to use. Use, for example, netstat -ano if you're on Windows, or netstat -anp if you're on Linux, to find out which processes are using which ports. You might also want to check Tomcat's log files. Regards mks --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]