> From: millerKiller [mailto:smille8...@hotmail.com] > Subject: RE: Socket Error in tomcat, white screen in browser > > Here is my port information in conf/server.xml: > <Server port="8005" shutdown="SHUTDOWN"> > <Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" > redirectPort="8443" /> > <Connector port="8009" protocol="AJP/1.3" redirectPort="8443" />
So there are three ports configured for this Tomcat: 8005, 80, and 8009. > I pull up netstat -ano > Here is the only thing that relates to these port numbers: > Local Address Foreign Address > ------------- ---------------- > 127.0.0.1:8005 0.0.0.0.0 That shows someone is using port 8005, so Tomcat won't be able to get it, resulting in the errors you see in the logs. The netstat -ano also gives you the PID of whoever's using that port; that's either another Tomcat, or possibly a Tomcat embedded in another product (e.g., VMware). You'll need to either kill the usurping process, or redefine your Tomcat's shutdown port to another value. > So it appears that nothing is using the same port On the contrary, it shows that something *is* using one of the ports of interest. > what is the correct way to respond in this forum Always post messages to the mailing list. Private ones will be returned ungraciously. BTW, a blank page in the browser is often the result of the ROOT webapp either not being present or failing to deploy properly. Make sure you have a ROOT webapp (case matters, even on Windows), and check the logs for any deployment errors. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org