Wilmer Tan wrote:
Hi,

I need help desperately. Our IIS Web Server crashed and since
recovery, IIS could no longer connect to Tomcat correctly. The Browser
Displays "Service Temporarily Unavailable!"
jakarta/ISAPI/isapi_redirect. IIS is working and Tomcat Instances are
all running and accessible if I access the port. I cannot find any
reference to errno=-9995 from the connector debug. This setup was
working before the crash but since then, could not get it to run
anymore.

Hi.
Let's concentrate on this message :
[error] jk_open_socket::jk_connect.c (435): socket() failed (errno=-9995)
[info] ajp_connect_to_endpoint::jk_ajp_common.c (922): Failed opening
socket to (127.0.0.1:8309) (errno=-9995)

So it looks like the isapi_redirect module is working, and that it tried, but failed, to open a connection to localhost port 8309.
Why is that ?

First, with Tomcat running, check this :
- open a command window on the server
- enter "netstat -ban -p TCP | more"

If a Tomcat AJP connector is listening on that port, there should be a line like

TCP 0.0.0.0:8309 0.0.0.0:0 LISTEN 2520 [java.exe]

Is there ?

If yes, then try to connect to that port via TCP. You can do this as follows. In the command window, enter :

telnet localhost 8309

If it works, the screen of the command window should clear.
Does it, or do you get some error message ?


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to