This is the error message in default-event.log.
Never have this messages before and JRun has been running for a while.
05/08 07:43:59 info (JRun) Loading monitor
05/08 07:43:59 info (JRun) Loading license
05/08 07:43:59 info (license) Enabling unlimited concurrency for Enterprise
05/08 07:43:59 info (JRun) Loading control
05/08 07:43:59 error (JRun) JRun Aborting! [javax.servlet.ServletException:
Port in use by another service or process: 53000]
javax.servlet.ServletException: Port in use by another service or process:
53000
java.net.BindException: Port in use by another service or process: 53000
at allaire.jrun.NetworkService.bind(NetworkService.java:273)
at allaire.jrun.NetworkService.init(NetworkService.java:114)
at allaire.jrun.ServletService.init(ServletService.java:66)
at allaire.jrun.ServletService.init(ServletService.java:31)
at
allaire.jrun.servlet.JRunServletLoader.loadServletInstance(JRunServletLoader.java:236)
at allaire.jrun.servlet.JRunSE.initServices(JRunSE.java:620)
at allaire.jrun.servlet.JvmContext.initServices(JvmContext.java:96)
at allaire.jrun.servlet.JRunSE.init(JRunSE.java:187)
at allaire.jrun.servlet.JvmContext.init(JvmContext.java:35)
at allaire.jrun.ServletService.init(ServletService.java:66)
at allaire.jrun.ServletService.init(ServletService.java:31)
at JRun.main(JRun.java:130)
Andi
Duane Morse
<[EMAIL PROTECTED]> To: [EMAIL PROTECTED]
Sent by: "A mailing cc:
list for discussion Subject: Re: JRun Server stops
abnormally
about Sun
Microsystem's Java
Servlet API
Technology."
<SERVLET-INTEREST@JAV
A.SUN.COM>
05/07/01 02:49 PM
Please respond to "A
mailing list for
discussion about Sun
Microsystem's Java
Servlet API
Technology."
Have you looked at the JRun event log to see if there's any useful
information there?
Duane Morse, Eldorado Computing Inc., Phoenix AZ
-----Original Message-----
From: Andi Setiyadi [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 07, 2001 1:28 PM
To: [EMAIL PROTECTED]
Subject: JRun Server stops abnormally
I am using JRun 3.0 on NT and I experienced weird situation here. For the
last couple days, JRun server quits abnormally, even when executing a very
simple servlet task. I post my servlet codes below. It was running before
no problem, this problem just occurred 2 days ago.
Anybody has experienced this problem before?
Thanks,
Andi
package com.wg.hr;
import ...;
public class Personnet extends HttpServlet
{
...
public void init(ServletConfig config) throws ServletException {
super.init(config);
setTargetPages();
context = getServletContext();
}
public void doGet(HttpServletRequest req, HttpServletResponse res)
throws IOException, ServletException {
req.setAttribute("context", context);
PrintWriter out = res.getWriter();
targetPage = "comejsp.jsp";
RequestDispatcher rd = context.getRequestDispatcher("/" +
targetPage);
rd.forward(req, res);
}
public void doPost(HttpServletRequest req, HttpServletResponse res)
throws IOException, ServletException {
doGet(req, res);
}
}
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html