RE: jk_nt_service

2003-07-02 Thread Mladen Turk


 -Original Message-
 From: Oxley, David
 Subject: jk_nt_service
 
 
 Tomcat developers,
 
 Can I suggest we bring back jk_nt_service.exe for running 
 Tomcat as a service for 5.0.x?

Why?

 It works perfectly fine with 
 TC4.1 and is a lot more flexible and easier to use for the 
 end users.

Not so sure it works with TC 5.

 Plus I have had several crashes of the JavaService 
 exe that is currently distributed with TC.
 

You meant procrun distributed with 5.0.3?
Declare several, and declare crashes, even better use the bugzilla.


MT.


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



RE: jk_nt_service

2003-07-02 Thread Oxley, David
I was talking about my experience with TC4.1 here. The tomcat.exe
(JavaService) crashes on me every now and again. So we only use
jk_nt_service.exe now.

I didn't know TC5 has already got something that is implemented differently
from TC4.1. Is there any documentation about procrun?

Dave.

 -Original Message-
 From: Mladen Turk [mailto:[EMAIL PROTECTED]
 Sent: 02 July 2003 16:10
 To: 'Tomcat Developers List'
 Subject: RE: jk_nt_service
 
 
 
  -Original Message-
  From: Oxley, David
  Subject: jk_nt_service
 
 
  Tomcat developers,
 
  Can I suggest we bring back jk_nt_service.exe for running
  Tomcat as a service for 5.0.x?
 
 Why?
 
  It works perfectly fine with
  TC4.1 and is a lot more flexible and easier to use for the
  end users.
 
 Not so sure it works with TC 5.
 
  Plus I have had several crashes of the JavaService
  exe that is currently distributed with TC.
 
 
 You meant procrun distributed with 5.0.3?
 Declare several, and declare crashes, even better use the bugzilla.
 
 
 MT.
 
 
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 This e-mail has been scanned for all viruses by Star Internet. The
 service is powered by MessageLabs. For more information on a proactive
 anti-virus service working around the clock, around the globe, visit:
 http://www.star.net.uk
 



This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk


RE: jk_nt_service problem

2001-06-13 Thread GOMEZ Henri

Did you try with JDK 1.3.1 ?

There is a known problem with Sun JDK 1.3
and NT Service

-
Henri Gomez ___[_]
EMAIL : [EMAIL PROTECTED](. .) 
PGP KEY : 697ECEDD...oOOo..(_)..oOOo...
PGP Fingerprint : 9DF8 1EA8 ED53 2F39 DC9B 904A 364F 80E6 



-Original Message-
From: Srinivas Kothuri [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, June 12, 2001 8:08 PM
To: '[EMAIL PROTECTED]'
Subject: Re: jk_nt_service problem 


i AM HAVING THE SAME PROBLEM TOO.
i AM RUNNING TOMCAT ON WINDOWS 200 AND TRYING TO CONFIGURE IT 
AS A SERVICE.

I AM GETTING THE 
Tomcat service didn't start but returned no error
More help is available by typing NET HELPMSG 3534

when i do net helpmsg 3534 it gives a message .
please try later or contact the network administrator.


THIS IS MY WRAPPERS.PROPERTIES FILE 

I CHANGED THE TOMCAT HOME AND THE JDK HOME TO

C:\JAKARTA-TOMCAT
C:\JDK1.3

it still doesnt seem to work.
any inputs or suggestions are welcome..
thanx.
srinivas kothuri




# wrapper.properties starts here-
#
# $Header: /home/cvs/jakarta-tomcat/src/etc/Attic/wrapper.properties,v
1.2.2.1 2000/10/16 01:59:22 larryi Exp $
# $Revision: 1.2.2.1 $
# $Date: 2000/10/16 01:59:22 $
#
#
# jk_service.properties - a bootstrap file for the Tomcat NT service.
#
# This file provides jk_nt_service with the needed information to
# start tomcat at a different process.
#
# As a general note, the characters $( and ) are used 
internally to define
# macros. Do not use them!!!
#
# Whenever you see a set of lines like these:
# x=value
# y=$(x)\something
#
# the final value for y will be value\something
#
# Normally all you will need to modify is the first two 
properties, i.e.,
# wrapper.tomcat_home and wrapper.java_home. Most of the configuration
# is derived from these two.
#

#
# wrapper.tomcat_home should point to the location where you
# installed tomcat. This is where you have your conf, webapps and lib
# directories.
#
wrapper.tomcat_home=put your Tomcat home

#
# wrapper.java_home should point to your Java installation. Normally
# you should have a bin and lib directories beneath it.
#
wrapper.java_home=put your Java home


#
#-- ADVANCED MODE 
# Make sure that you read the how-to before making too many changes.
#-
#

#
# Defining where the service is going to put the standard
# output of Tomcat. This is where System.out.println and
# System.err.println go to.
#
wrapper.stdout=$(wrapper.tomcat_home)\logs\jvm.stdout
wrapper.stderr=$(wrapper.tomcat_home)\logs\jvm.stderr

#
# Additions to the path. Put here directories where you store DLLs for
# native methods, etc.
#
wrapper.ld_path=d:\
wrapper.ld_path=c:\

#
# Defining the classpath. All the rows that belongs to the class_path
# property are concatenated to create the classpath for Tomcat.
#
# If you have additional locations that you would like to add to the
# classpath, add a new wrapper.class_path=location line.
#
wrapper.class_path=$(wrapper.tomcat_home)\classes
wrapper.class_path=$(wrapper.tomcat_home)\lib\webserver.jar
wrapper.class_path=$(wrapper.tomcat_home)\lib\jasper.jar
wrapper.class_path=$(wrapper.tomcat_home)\lib\xml.jar
wrapper.class_path=$(wrapper.tomcat_home)\lib\servlet.jar


#
# This is where Javac is located in JDK1.2.x.
#
wrapper.class_path=$(wrapper.java_home)\lib\tools.jar
#
# and a tribute to JDK1.1.x
#
wrapper.class_path=$(wrapper.java_home)\lib\classes.zip

#
# This is the Java interpreter used for running Tomcat.
#
wrapper.javabin=$(wrapper.java_home)\bin\java.exe

#
# This is Tomcat's startup class (the class that contains Tomcat's
# starting point).
#
wrapper.startup_class=org.apache.tomcat.startup.Tomcat

#
# This is where tomcat's server.xml configuration file is located. 
#
wrapper.server_xml=$(wrapper.tomcat_home)\conf\server.xml

#
# The NT service uses AJP12/AJP13 to shut down Tomcat. The 
# wrapper.shutdown_port tells the service the identity of the 
port that 
# is used by AJP12/AJP13.
#
wrapper.shutdown_port=8007

#
# Can be either ajp12 or ajp13 depending on your configuration.
#
# Default value is ajp12.
#
wrapper.shutdown_protocol=ajp12

#
# This is the command line that is used to start Tomcat. You 
can *add* extra
# parameters to it, but you can not remove anything.
#
wrapper.cmd_line=$(wrapper.javabin) -classpath $(wrapper.class_path)
$(wrapper.startup_class) -config $(wrapper.server_xml) -home
$(wrapper.tomcat_home)

#-wrapper.properties ends here-





RE: jk_nt_service problem

2001-06-13 Thread Jeremy

I've been experiencing the exact same problem with ibm jdk 1.1.8

 From: GOMEZ Henri [mailto:[EMAIL PROTECTED]]
 Did you try with JDK 1.3.1 ?

 There is a known problem with Sun JDK 1.3
 and NT Service

From: Srinivas Kothuri [mailto:[EMAIL PROTECTED]]
I AM GETTING THE
Tomcat service didn't start but returned no error
More help is available by typing NET HELPMSG 3534

best regards,
Jeremy
--
But they are useless.  They can only give you answers - Pablo Picasso,
about computers




Re: jk_nt_service problem

2001-06-12 Thread Srinivas Kothuri

i AM HAVING THE SAME PROBLEM TOO.
i AM RUNNING TOMCAT ON WINDOWS 200 AND TRYING TO CONFIGURE IT AS A SERVICE.

I AM GETTING THE 
Tomcat service didn't start but returned no error
More help is available by typing NET HELPMSG 3534

when i do net helpmsg 3534 it gives a message .
please try later or contact the network administrator.


THIS IS MY WRAPPERS.PROPERTIES FILE 

I CHANGED THE TOMCAT HOME AND THE JDK HOME TO

C:\JAKARTA-TOMCAT
C:\JDK1.3

it still doesnt seem to work.
any inputs or suggestions are welcome..
thanx.
srinivas kothuri




# wrapper.properties starts here-
#
# $Header: /home/cvs/jakarta-tomcat/src/etc/Attic/wrapper.properties,v
1.2.2.1 2000/10/16 01:59:22 larryi Exp $
# $Revision: 1.2.2.1 $
# $Date: 2000/10/16 01:59:22 $
#
#
# jk_service.properties - a bootstrap file for the Tomcat NT service.
#
# This file provides jk_nt_service with the needed information to
# start tomcat at a different process.
#
# As a general note, the characters $( and ) are used internally to define
# macros. Do not use them!!!
#
# Whenever you see a set of lines like these:
# x=value
# y=$(x)\something
#
# the final value for y will be value\something
#
# Normally all you will need to modify is the first two properties, i.e.,
# wrapper.tomcat_home and wrapper.java_home. Most of the configuration
# is derived from these two.
#

#
# wrapper.tomcat_home should point to the location where you
# installed tomcat. This is where you have your conf, webapps and lib
# directories.
#
wrapper.tomcat_home=put your Tomcat home

#
# wrapper.java_home should point to your Java installation. Normally
# you should have a bin and lib directories beneath it.
#
wrapper.java_home=put your Java home


#
#-- ADVANCED MODE 
# Make sure that you read the how-to before making too many changes.
#-
#

#
# Defining where the service is going to put the standard
# output of Tomcat. This is where System.out.println and
# System.err.println go to.
#
wrapper.stdout=$(wrapper.tomcat_home)\logs\jvm.stdout
wrapper.stderr=$(wrapper.tomcat_home)\logs\jvm.stderr

#
# Additions to the path. Put here directories where you store DLLs for
# native methods, etc.
#
wrapper.ld_path=d:\
wrapper.ld_path=c:\

#
# Defining the classpath. All the rows that belongs to the class_path
# property are concatenated to create the classpath for Tomcat.
#
# If you have additional locations that you would like to add to the
# classpath, add a new wrapper.class_path=location line.
#
wrapper.class_path=$(wrapper.tomcat_home)\classes
wrapper.class_path=$(wrapper.tomcat_home)\lib\webserver.jar
wrapper.class_path=$(wrapper.tomcat_home)\lib\jasper.jar
wrapper.class_path=$(wrapper.tomcat_home)\lib\xml.jar
wrapper.class_path=$(wrapper.tomcat_home)\lib\servlet.jar


#
# This is where Javac is located in JDK1.2.x.
#
wrapper.class_path=$(wrapper.java_home)\lib\tools.jar
#
# and a tribute to JDK1.1.x
#
wrapper.class_path=$(wrapper.java_home)\lib\classes.zip

#
# This is the Java interpreter used for running Tomcat.
#
wrapper.javabin=$(wrapper.java_home)\bin\java.exe

#
# This is Tomcat's startup class (the class that contains Tomcat's
# starting point).
#
wrapper.startup_class=org.apache.tomcat.startup.Tomcat

#
# This is where tomcat's server.xml configuration file is located. 
#
wrapper.server_xml=$(wrapper.tomcat_home)\conf\server.xml

#
# The NT service uses AJP12/AJP13 to shut down Tomcat. The 
# wrapper.shutdown_port tells the service the identity of the port that 
# is used by AJP12/AJP13.
#
wrapper.shutdown_port=8007

#
# Can be either ajp12 or ajp13 depending on your configuration.
#
# Default value is ajp12.
#
wrapper.shutdown_protocol=ajp12

#
# This is the command line that is used to start Tomcat. You can *add* extra
# parameters to it, but you can not remove anything.
#
wrapper.cmd_line=$(wrapper.javabin) -classpath $(wrapper.class_path)
$(wrapper.startup_class) -config $(wrapper.server_xml) -home
$(wrapper.tomcat_home)

#-wrapper.properties ends here-