----------------------------------------------------------------
BEFORE YOU POST, search the faq at <http://java.apache.org/faq/>
WHEN YOU POST, include all relevant version numbers, log files,
and configuration files.  Don't make us guess your problem!!!
----------------------------------------------------------------

> Hi,
>
> I am running Apache v1.3.12 with RavenSSL and mod_jserv (from
> JServ v1.0) on
> a Sun Ultra5 running Solaris 2.7. The ApacheJServ v1.0 with with GNUJSP is
> running on a separate server, Sun Ultra Enterprise 220 w/ Solaris 2.7. The
> JSP pages perform SQL queries against an Oracle 8.1.5 database.
>
> When I start the site, the site will be up and live for about 5 to 10
> minutes before it stops responding.
>
> Looking at the jserv logs, I see that the jserv is getting the
> requests from
> the apache web servers, but doesn't seem to be sending the response.
>
> I am at a loss as to why this is happening. We don't see any errors on the
> Oracle side.
>
> Joo

99.9% of the time, this sort of stuff is due to code that doesn't
close/release JDBC objects that get created.  Make sure every ResultSet,
Statement, etc is explicitly closed via close() when you're done
with it.  Your setup looks pretty common, and I venture to say there
are 100's (at least) of installations running with near-identical setups
that don't have this problem.

- Fernando



--
--------------------------------------------------------------
Please read the FAQ! <http://java.apache.org/faq/>
To subscribe:        [EMAIL PROTECTED]
To unsubscribe:      [EMAIL PROTECTED]
Archives and Other:  <http://java.apache.org/main/mail.html>
Problems?:           [EMAIL PROTECTED]

Reply via email to