Resolution, Re: Help! Tomcat crashing on takeoff

2015-01-05 Thread James H. H. Lampert
People on both the Tomcat and Java400-L Lists nailed the problem: it turned out to be a PTF issue. Once the customer got the box's PTFs fully in order, Tomcat started up without a problem, a self-signed certificate brought up their SSL, and our WAR file uploaded and deployed normally. They

Re: Resolution, Re: Help! Tomcat crashing on takeoff

2015-01-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 James, On 1/5/15 11:37 AM, James H. H. Lampert wrote: People on both the Tomcat and Java400-L Lists nailed the problem: it turned out to be a PTF issue. For those playing-along at home: PTF = Program Temporary Fix. It's IBM's term for patch,

Re: Help! Tomcat crashing on takeoff

2014-12-22 Thread James H. H. Lampert
On the Tomcat Users List, Pete Helgren wrote: Also, are you sure that Java 6 on this box is current with PTF's and that the profile this is running under is picking up the correct JVM version when it runs? My money is on a J9 JVM PTF but an issue with permissions or JVM version could be a

Re: Help! Tomcat crashing on takeoff

2014-12-13 Thread Ameer Mawia
Tomcat has few fallback approach for catalina.properties: 1.First it look at system properties for config url, with property name catalina.config 2.If it could not find in step-1, it looks at CATALINA_BASE/conf/ 3.If it again could'n find above, it tries to load it from the classpath of

RE: Help! Tomcat crashing on takeoff

2014-12-12 Thread Caldarale, Charles R
From: James H. H. Lampert [mailto:jam...@touchtonecorp.com] Subject: Help! Tomcat crashing on takeoff I'm trying to bring up Tomcat on a customer's AS/400. Don't suppose you'd want to give us a clue as to _exactly_ which version of Tomcat you're trying to run? - Chuck THIS COMMUNICATION

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread James H. H. Lampert
On 12/12/14 10:02 AM, Caldarale, Charles R wrote: From: James H. H. Lampert [mailto:jam...@touchtonecorp.com] Subject: Help! Tomcat crashing on takeoff I'm trying to bring up Tomcat on a customer's AS/400. Don't suppose you'd want to give us a clue as to _exactly_ which version of Tomcat

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Filip Hanik
Couple of things that comes to mind 1. the 'java' binary that gets executed is actually not the one you think it is 2. the file /wintouch/tomcat/bin/bootstrap.jar is corrupted or not readable by the JVM hence it can't find the class Filip On Fri, Dec 12, 2014 at 11:27 AM, James H. H. Lampert

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Ameer Mawia
On Sat, Dec 13, 2014 at 12:01 AM, Filip Hanik fi...@hanik.com wrote: Couple of things that comes to mind 1. the 'java' binary that gets executed is actually not the one you think it is 2. the file /wintouch/tomcat/bin/bootstrap.jar is corrupted or not readable by the JVM hence it can't find

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Ameer Mawia
On Sat, Dec 13, 2014 at 12:01 AM, Filip Hanik fi...@hanik.com wrote: Couple of things that comes to mind 1. the 'java' binary that gets executed is actually not the one you think it is 2. the file /wintouch/tomcat/bin/bootstrap.jar is corrupted or not readable by the JVM hence it can't find

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Filip, On 12/12/14 1:31 PM, Filip Hanik wrote: Couple of things that comes to mind 1. the 'java' binary that gets executed is actually not the one you think it is 2. the file /wintouch/tomcat/bin/bootstrap.jar is corrupted or not readable by

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread James H. H. Lampert
On 12/12/14 11:21 AM, Ameer Mawia wrote: catalina.jar is loaded by common.loader defined catalina.properties: common.loader=${catalina.base}/lib,${catalina.base}/lib/*.jar,${catalina.home}/lib,${catalina.home}/lib/*.jar As stack-trace shows Bootstrap has been loaded successfully. So

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread James H. H. Lampert
On 12/12/14 11:43 AM, Christopher Schultz wrote: I wouldn't be surprised if the AS/400 unzip software does Bad Things to ZIP archives. Make sure you use UNIX-compatible tools to unpack everything, or maybe do everything from inside that UNIX-like environment (I seem to recall that, while you are

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 James, On 12/12/14 3:19 PM, James H. H. Lampert wrote: On 12/12/14 11:43 AM, Christopher Schultz wrote: I wouldn't be surprised if the AS/400 unzip software does Bad Things to ZIP archives. Make sure you use UNIX-compatible tools to unpack

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Filip Hanik
possibly add -verbose:class to your JVM options and see if that yields anything On Fri, Dec 12, 2014 at 1:44 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 James, On 12/12/14 3:19 PM, James H. H. Lampert wrote: On 12/12/14

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Filip Hanik
or -Dibm.cl.verbose=ClassToTrace On Fri, Dec 12, 2014 at 2:26 PM, Filip Hanik fi...@hanik.com wrote: possibly add -verbose:class to your JVM options and see if that yields anything On Fri, Dec 12, 2014 at 1:44 PM, Christopher Schultz ch...@christopherschultz.net wrote: -BEGIN

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Pete Helgren
On 12/12/2014 2:19 PM, James H. H. Lampert wrote: On 12/12/14 11:43 AM, Christopher Schultz wrote: I wouldn't be surprised if the AS/400 unzip software does Bad Things to ZIP archives. Make sure you use UNIX-compatible tools to unpack everything, or maybe do everything from inside that

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread James H. H. Lampert
On Fri, Dec 12, 2014 at 2:26 PM, Filip Hanik fi...@hanik.com wrote: possibly add -verbose:class to your JVM options and see if that yields anything On 12/12/14 1:27 PM, Filip Hanik wrote: or -Dibm.cl.verbose=ClassToTrace Again calling /wintouch/tomcat/bin/startup.sh from an

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread James H. H. Lampert
On 12/12/14 2:54 PM, Pete Helgren wrote: My money is on a J9 JVM PTF but an issue with permissions or JVM version could be a possibility.. That's occurred to us as well; we've asked someone at their end to check for PTFs. -- JHHL

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Konstantin Kolinko
2014-12-12 22:43 GMT+03:00 Christopher Schultz ch...@christopherschultz.net: EBCDIC can certainly be confusing things, here. I wonder - can you verify that conf/catalina.properties file can be read with a simple Java program? Essentially Tomcat does the following: in

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Filip Hanik
On Fri, Dec 12, 2014 at 3:55 PM, James H. H. Lampert jam...@touchtonecorp.com wrote: On Fri, Dec 12, 2014 at 2:26 PM, Filip Hanik fi...@hanik.com wrote: possibly add -verbose:class to your JVM options and see if that yields anything On 12/12/14 1:27 PM, Filip Hanik wrote: or

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread James H. H. Lampert
On 12/12/14 5:36 PM, Filip Hanik wrote: ​We're not looking for change, we're looking for the output, that may tell us what is going on. Please post it, if you're not getting any output, then either those aren't supported (which I definitely thought they would be), or you're invoking it

Re: Help! Tomcat crashing on takeoff

2014-12-12 Thread Filip Hanik
It means they didn't take into effect. On the command line you should be able to do java -verbose:class -version and see if that flag works, if it does, then I suggest you create a setenv.sh file next to startup.sh and put JAVA_OPTS=-verbose:class -Dibm.cl.verbose=ClassToTrace export

Re: help tomcat

2010-08-05 Thread michel
- Original Message - From: paola bianchi pb.bian...@gmail.com To: users@tomcat.apache.org Sent: Thursday, August 05, 2010 6:31 AM Subject: help tomcat Hello, I'm using Tomcat 5.5, I'm new in Tomcat and web application world I'm trying to make a web application on Tomcat. I

RE: help tomcat

2010-08-05 Thread Richard G Curry
05, 2010 5:36 AM To: Tomcat Users List Subject: Re: help tomcat - Original Message - From: paola bianchi pb.bian...@gmail.com To: users@tomcat.apache.org Sent: Thursday, August 05, 2010 6:31 AM Subject: help tomcat Hello, I'm using Tomcat 5.5, I'm new in Tomcat and web application world

Re: help tomcat

2010-08-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Richard, On 8/5/2010 11:12 AM, Richard G Curry wrote: I had a similar problem when I first setup my Java development environment to work on servlets and I was missing the Servlets classes. From the message you report, it seems that you are missing

Re: help : Tomcat 6.0.20 session replication not working

2010-05-12 Thread André Warnier
o-rabbit wrote: ... Is there something more I need to do?? Please reply urgently!!! Hi. For your information, the above is almost guaranteed to have the opposite effect of what you would like. The people answering on forums such as this one, are volunteers who donate their time. You are a

Re: help : Tomcat 6.0.20 session replication not working

2010-05-12 Thread Gregor Schneider
On Wed, May 12, 2010 at 3:51 PM, o-rabbit rju...@gmail.com wrote: Is there something more I need to do?? yes: read the clustering-how-to: http://tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html rgds gregor -- just because you're paranoid, don't mean they're not after you... gpgp-fp:

Re: help : Tomcat 6.0.20 session replication not working

2010-05-12 Thread o-rabbit
On Wed, May 12, 2010 at 3:51 PM, o-rabbit rju...@gmail.com wrote: Is there something more I need to do?? yes: read the clustering-how-to: http://tomcat.apache.org/tomcat-6.0-doc/cluster-howto.html fyi...People usually post in forums such as this after going through the application website.

Re: help : Tomcat 6.0.20 session replication not working

2010-05-12 Thread o-rabbit
I am glad everyone does not think like you do! awarnier wrote: o-rabbit wrote: ... Is there something more I need to do?? Please reply urgently!!! Hi. For your information, the above is almost guaranteed to have the opposite effect of what you would like. The people answering on

Re: help : Tomcat 6.0.20 session replication not working

2010-05-12 Thread Gregor Schneider
On Wed, May 12, 2010 at 7:21 PM, o-rabbit rju...@gmail.com wrote: I am glad everyone does not think like you do! FYI: André is well know to this group as one of the persons trying their very best to help anybody having problems regarding Tomcat. If you didn't receive any answer helping you

Re: Help!Tomcat crashes:Waiting for instance(s) to be deallocated

2006-05-14 Thread starki78
, or is it just a problem with tomcat 4.1? Thank you! Starki -- Initial Header --- From : Martyn Hiemstra [EMAIL PROTECTED] To : Tomcat Users List users@tomcat.apache.org Cc : Date : Thu, 11 May 2006 10:26:11 +0200 Subject : Re: Help!Tomcat crashes:Waiting

Re: Help!Tomcat crashes:Waiting for instance(s) to be deallocated

2006-05-11 Thread Martyn Hiemstra
Hi Starki78 I had this problem when using a singelton class that stored a datasource in it. Everytime I pressed F5 really fast the web server would hang and when I shutdown I got that same message. Apparently when pressing F5 very fast instead of the singelton only using 1 datasource (The one

Re: Re: Help, Tomcat 4.1.31 no response

2005-12-18 Thread kartwall
Subject: Re: Help, Tomcat 4.1.31 no response Have you taken a look at your log files? It could be a memory leak in your app as well. -- David zhang chao wrote: My Operating System: RedHat 9 JVM version: j2sdk 1.4.2_09 Tomcat: tomcat 4.1.31 Hardware configuration: Dual PIII 1G, 512MB memory

Re: Help, Tomcat 4.1.31 no response

2005-12-17 Thread David Smith
Have you taken a look at your log files? It could be a memory leak in your app as well. -- David zhang chao wrote: My Operating System: RedHat 9 JVM version: j2sdk 1.4.2_09 Tomcat: tomcat 4.1.31 Hardware configuration: Dual PIII 1G, 512MB memory users: about 30 I have a web application

Re: Help, Tomcat 4.1.31 no response

2005-12-17 Thread Martin Gainty
I Agree with David- Send us your most recent log from $CATALINA_HOME/logs regards, Martin- - Original Message - From: David Smith [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, December 17, 2005 11:03 AM Subject: Re: Help, Tomcat 4.1.31 no response