Broken pipe message in tomcat.log

2001-10-18 Thread Tony Mueller

Hi,

I'm using Tomcat 3.2 and I get the message:

Context log: path=/rpm Broken pipe /rpm/servlet/rpm.Login
Context log: path=/rpm Broken pipe /rpm/servlet/rpm.Login
Context log: path=/rpm Broken pipe /rpm/servlet/rpm.Login
Context log: path=/rpm Broken pipe /rpm/servlet/rpm.Login

in my tomcat.log file when I try to access my login servlet. 

This only happens occasionally and makes tomcat hang.

I've read the archives and none of the proposed solutions seem to apply
to my situation since I'm not using any connection broker in this servlet.
Also each call to the servlet establishes a connection and then 
disconnects so my problem is not related to a connection timing out due
to any servlet inactivity.

In addition I've checked during this hang to see if I'm running out
of db connections. I'm not.

Also what is interesting, If I wait about 2 minutes the servlet
will finally connect and let my application continue on is merry way 
(much to the annoyance of my users)

I'm sure others are having this problem or have had this problem and 
found a solution.

Thanks 

Tony Mueller




Does anyone know what causes this message???

2001-01-05 Thread Tony Mueller

Hello,

in my mod_jk.log file:

[jk_ajp12_worker.c (596)]: ajpv12_handle_response, error writing back to
server

appears many times although my application seems to run fine.

Thanks

Tony

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




What does the following message mean in mod_jk.log?

2000-12-29 Thread Tony Mueller

in mod_jk.log:

[jk_ajp12_worker.c (596)]: ajpv12_handle_response, error writing back to
server

This log file has tons of these lines in it. The application thats running
using
these servlet seems to run fine though.

Anyone else getting this message?

Thanks

Tony


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]




using mod_jk log ... I get this message...

2000-11-21 Thread Tony Mueller

Hello,

My webapp seems to run fine on apache - mod_jk - tomcat 3.1 except that I 
occasionally get the following message in my mod_jk log file?

[jk_ajp12_worker.c (596)]: ajpv12_handle_response, error writing back to
server

Has anyone else got the same message and has any idea what is causing it?

Thanks 

Tony Mueller



Starting Tomcat at bootup.

2000-11-14 Thread Tony Mueller

Hi, 

Im running RedHat 6.2 and Tomcat 3.1.
I would like to have Tomcat automatically start up at boot time.
Does anyone have a way to do this?

Thanks in advance!

Tony Mueller




RE: Starting Tomcat at bootup.

2000-11-14 Thread Tony Mueller

Thanks to all!

This works like a charm. 

Note: I needed to add - 
export JAVA_HOME=/usr/local/jdk1.2.2 
to the script since the tomcat.sh could not find my java.

Hope this helps others

Tony

-Original Message-
From: Mike La Budde [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 14, 2000 3:22 PM
To: [EMAIL PROTECTED]
Cc: '[EMAIL PROTECTED]'
Subject: Re: Starting Tomcat at bootup.


Tony:

If you want full sysv init-style scripts you can put this in
/etc/rc.d/init.d:

#!/bin/sh
#
# Startup script for Tomcat
#
# chkconfig: 345 93 06
# description: start|stop|restart Tomcat (the JSP/Servlet engine)
#

# Source function library.
. /etc/rc.d/init.d/functions

# See how we were called.
case "$1" in
   start)
 echo -n "Starting tomcat: "
 /opt/tomcat/bin/startup.sh
 echo
 ;;
   stop)
 echo -n "Shutting down tomcat: "
 /opt/tomcat/bin/shutdown.sh
 ;;
   restart)
 $0 stop
 $0 start
 ;;
   *)
 echo "Usage: $0 {start|stop|restart|reload|status}"
 exit 1
esac

exit 0


Then add it via:

chkconfig --add tomcat
chkconfig --level tomcat 345 on

This will start tomcat for run levels 3, 4, and 5 and stop tomcat for the 
others.

HTH,

Mike


At 11/14/2000 02:51 PM -0800, Tony Mueller wrote:
Hi,

Im running RedHat 6.2 and Tomcat 3.1.
I would like to have Tomcat automatically start up at boot time.
Does anyone have a way to do this?

Thanks in advance!

Tony Mueller