Re: Tomcat shutdown issues

2009-12-18 Thread Konstantin Kolinko
Dec 18, 2009 2:59:27 PM org.apache.catalina.core.StandardServer await WARNING: StandardServer.await: Invalid command 'GET /gdf2009 HTTP/1.1' received Someone is trying to send HTTP request to the Tomcat Shutdown port. It is not what is expected there. See http://tomcat.apache.org/tomcat-6.0-doc

Re: Tomcat shutdown issues

2009-12-18 Thread SRama
this message in context: http://old.nabble.com/Tomcat-shutdown-issues-tp26849025p26850483.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org

Re: Tomcat shutdown issues

2009-12-18 Thread SRama
in context: http://old.nabble.com/Tomcat-shutdown-issues-tp26849025p26850526.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e

Re: Tomcat shutdown issues

2009-12-18 Thread SRama
.. -- View this message in context: http://old.nabble.com/Tomcat-shutdown-issues-tp26849025p26849025.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org

Re: Tomcat shutdown issues

2009-12-18 Thread Konstantin Kolinko
2009/12/19 SRama su...@techie.com: before starting the server I am checking both port address if any other applicaion using the same port I am dynamicaly chaning the shutdown port and http port. You won't be able to shutdown Tomcat using the shutdown script, if the script does not know what

Re: oracle JDBC sessions not closing while tomcat shutdown

2009-07-17 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Santosh, On 7/16/2009 7:27 AM, santosh.si...@birlasoft.com wrote: When I have tried to run the any java program independent of tomcat then the opened session is releasing from oracle database. Probably because you are calling System.exit() in your

oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread santosh.singh
Hi Apache Tomcat is working as a middleware between JAVA and ORACLE Databse. The problem is that when I am starting the tomcat, each time it opens 3 JDBC sessions on database level and using those sessions at application level. But when shutting down the tomcat, it is not closing/releasing those

Re: oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread Mikolaj Rydzewski
, it is not closing/releasing those JDBC sessions from database level. And thus so many not in use JDBC sessions exists after restarting tomcat many times. How can you have JDBC sessions active after Tomcat shutdown? JVM exits, so every JDBC connection disappears... -- Mikolaj Rydzewski m

RE: oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread santosh.singh
-Original Message- From: Mikolaj Rydzewski [mailto:m...@ceti.pl] Sent: Thursday, July 16, 2009 3:19 PM To: Tomcat Users List Subject: Re: oracle JDBC sessions not closing while tomcat shutdown santosh.si...@birlasoft.com wrote: Apache Tomcat is working as a middleware between JAVA

Re: oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread Mikolaj Rydzewski
santosh.si...@birlasoft.com wrote: We are getting same JDBC Sessions at oracle database which has been created/pooled while tomcat started. I would also like to update you that java.exe is not terminating for the same tomcat. However , we have performed proper shutdown of tomcat using

RE: oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread santosh.singh
tomcat shutdown santosh.si...@birlasoft.com wrote: We are getting same JDBC Sessions at oracle database which has been created/pooled while tomcat started. I would also like to update you that java.exe is not terminating for the same tomcat. However , we have performed proper shutdown

Re: oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread Mark Thomas
santosh.si...@birlasoft.com wrote: Hi How can I verify that and while shutting down or restarting tomcat, how it will close. Do a thread dump when is doesn't shutdown and see what is still running. Mark - To

Re: oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread Mark Thomas
, July 16, 2009 4:01 PM To: Tomcat Users List Subject: Re: oracle JDBC sessions not closing while tomcat shutdown santosh.si...@birlasoft.com wrote: Hi How can I verify that and while shutting down or restarting tomcat, how it will close. Do a thread dump when is doesn't shutdown and see

RE: oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread santosh.singh
in tomcat file(s). So, that this issue will resolve. Regards Santosh -Original Message- From: Mark Thomas [mailto:ma...@apache.org] Sent: Thursday, July 16, 2009 4:25 PM To: Tomcat Users List Subject: Re: oracle JDBC sessions not closing while tomcat shutdown santosh.si...@birlasoft.com

Re: oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread Mikolaj Rydzewski
santosh.si...@birlasoft.com wrote: When I have tried to run the any java program independent of tomcat then the opened session is releasing from oracle database. But the same java program is run via/through tomcat then opened JDBC sessions at oracle database level is not releasing. Is there

RE: oracle JDBC sessions not closing while tomcat shutdown

2009-07-16 Thread Martin Gainty
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. Date: Thu, 16 Jul 2009 11:49:14 +0200 From: m...@ceti.pl To: users@tomcat.apache.org Subject: Re: oracle JDBC sessions not closing while tomcat shutdown santosh.si...@birlasoft.com wrote

Tomcat shutdown problem due to running threads.

2009-06-17 Thread CBy
O'Reilly's Tomcat The Definitive Guide advises me to invoke the setDaemon(true) method on any Thread object a web application creates to keep them from hanging the JVM when Tomcat shuts down. My web service, however, uses a thread pool that is created via

Re: Tomcat shutdown problem due to running threads.

2009-06-17 Thread André Warnier
CBy wrote: O'Reilly's Tomcat The Definitive Guide advises me to invoke the setDaemon(true) method on any Thread object a web application creates to keep them from hanging the JVM when Tomcat shuts down. My web service, however, uses a thread pool that is created via

Re: Tomcat shutdown problem due to running threads.

2009-06-17 Thread CBy
Thanks for pointing me in the right direction André. A ServletContextListener fixed my problem. André Warnier wrote: CBy wrote: O'Reilly's Tomcat The Definitive Guide advises me to invoke the setDaemon(true) method on any Thread object a web application creates to keep them from hanging the

Re: Tomcat shutdown problem due to running threads.

2009-06-17 Thread André Warnier
CBy wrote: Thanks for pointing me in the right direction André. A ServletContextListener fixed my problem. My own contribution was minimal, and due mainly to the fact that I am eavesdropping on the real Tomcat experts conversations here and remembering some things, even if I never used them

Re: Tomcat shutdown problem due to running threads.

2009-06-17 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Carsten, On 6/17/2009 4:33 AM, CBy wrote: O'Reilly's Tomcat The Definitive Guide advises me to invoke the setDaemon(true) method on any Thread object a web application creates to keep them from hanging the JVM when Tomcat shuts down. My web

Re: Tomcat shutdown problem due to running threads.

2009-06-17 Thread CBy
Thank you, Christopher. It appears that I now have to ways to solve my problem. Calling shutdown() stops the threads orderly, so I think I'll opt for the ContextListener, although I am not 100% sure. Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Carsten, On

Re: Tomcat shutdown problem due to running threads.

2009-06-17 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Carsten, On 6/17/2009 2:04 PM, CBy wrote: Thank you, Christopher. It appears that I now have to ways to solve my problem. Calling shutdown() stops the threads orderly, so I think I'll opt for the ContextListener, although I am not 100% sure. I'd

Re: tomcat shutdown problem

2009-04-28 Thread S Arvind
Pid thanks very much. We found the thread from the thread dump. Problem we did is we didnt shutdown the quartz scheduler. Now as per ur guidelines in the context listener we did that. It currently in testing phase. Thanks.. Many of lifes failure are people who did not realize how close they

Re: tomcat shutdown problem

2009-04-28 Thread Pid
S Arvind wrote: Pid thanks very much. We found the thread from the thread dump. Problem we did is we didnt shutdown the quartz scheduler. Now as per ur guidelines in the context listener we did that. It currently in testing phase. Thanks.. Good news. And now you know 2 things: how to diagnose

Re: tomcat shutdown problem

2009-04-27 Thread S Arvind
Is the application completely unchanged for deployment on Tomcat 6? yes it is completely *unchanged*... is anything must be changed for quartz? --Arvind S * Many of lifes failure are people who did not realize how close they were to success when they gave up. -Thomas Edison * On Sat, Apr 25,

Re: tomcat shutdown problem

2009-04-27 Thread Pid
S Arvind wrote: Is the application completely unchanged for deployment on Tomcat 6? yes it is completely *unchanged*... is anything must be changed for quartz? okay, then your best bet is to explore what the JVM is doing after shutdown and check which threads are still running. p --Arvind

Re: tomcat shutdown problem

2009-04-27 Thread Dan Armbrust
Did you write your application? there are team of 200 Engineers wrote that application so i dont know where the problem is One (or more) of them made a mistake, and has left a non-daemon thread running. You need to find out what thread is running. One way to do this is to get a thread dump.

Re: tomcat shutdown problem

2009-04-27 Thread S Arvind
Pid very thanks for guiding me .. one more help alone... can u please tell me how to check which thread it is runnin by quartz other then checking code ... i am centos, jvm 5, tomcat 5 and tomcat 6.. i think i am disturbin u lot, but ... -Arvind S * Many of lifes failure are people who did

Re: tomcat shutdown problem

2009-04-27 Thread Pid
S Arvind wrote: Pid very thanks for guiding me .. one more help alone... can u please tell me how to check which thread it is runnin by quartz other then checking code ... i am centos, jvm 5, tomcat 5 and tomcat 6.. i think i am disturbin u lot, but ... As Dan said, kill -QUIT pid, and as

Re: tomcat shutdown problem

2009-04-25 Thread Pid
S Arvind wrote: A wierd problem occur while shutdowning the tomcat 6 in the Fedora and Centos. Usually i use shell file to shutdown. After shutting down when see the postgre preocess by [code]*ps -ef | grep java*[/code] it is still showing the process as running. such as [code]

Re: tomcat shutdown problem

2009-04-25 Thread S Arvind
Thanks pid... Can u able to give me more idea to solve it if possible.. Thanks, Arvind S *Many of lifes failure are people who did not realize how close they were to success when they gave up. -Thomas Edison * On Sat, Apr 25, 2009 at 2:00 PM, Pid p...@pidster.com wrote: S Arvind wrote: A

Re: tomcat shutdown problem

2009-04-25 Thread Pid
S Arvind wrote: Thanks pid... Can u able to give me more idea to solve it if possible.. Did you write your application? Are you using Quartz in your application? Are you starting new Threads in your app? When you have started and stopped the application a few times are there still multiple

Re: tomcat shutdown problem

2009-04-25 Thread S Arvind
Did you write your application? there are team of 200 Engineers wrote that application so i dont know where the problem is Are you using Quartz in your application? yeah we have quartz scheduler in our application. But when we run in Tomcat 5 we dont have this kind of problem Are you starting

Re: tomcat shutdown problem

2009-04-25 Thread Pid
Please do not keep using reply to all. It is annoying and unnecessary. I will obviously receive a copy of the mail if you just send a reply to the list. Did you write your application? there are team of 200 Engineers wrote that application so i dont know where the problem is Are you using

RE: tomcat shutdown problem

2009-04-25 Thread Martin Gainty
responsabilité pour le contenu fourni. From: arvindw...@gmail.com Date: Sat, 25 Apr 2009 14:07:25 +0530 Subject: Re: tomcat shutdown problem To: users@tomcat.apache.org; p...@pidster.com Thanks pid... Can u able to give me more idea to solve it if possible.. Thanks, Arvind S

tomcat shutdown problem

2009-04-24 Thread S Arvind
A wierd problem occur while shutdowning the tomcat 6 in the Fedora and Centos. Usually i use shell file to shutdown. After shutting down when see the postgre preocess by [code]*ps -ef | grep java*[/code] it is still showing the process as running. such as [code] tomcat 14694 1 72 Apr23

Tomcat Shutdown

2009-03-10 Thread AlexElba
Hello, Are they any static variables that tomcat will set when user will try to shutdown tomcat? Thanks P.S. I am not sure where to ask sorry for publication) -- View this message in context: http://www.nabble.com/Tomcat-Shutdown-tp22444717p22444717.html Sent from the Tomcat - User mailing

Re: Tomcat Shutdown

2009-03-10 Thread André Warnier
AlexElba wrote: Hello, Are they any static variables that tomcat will set when user will try to shutdown tomcat? And how do you think a user would try to do that ? And just assuming the user would succeed in such an attempt, and Tomcat would shutdown, what good would it do if it set a static

RE: Tomcat Shutdown

2009-03-10 Thread Caldarale, Charles R
From: André Warnier [mailto:a...@ice-sa.com] Subject: Re: Tomcat Shutdown (I also have this lingering doubt about the very wisdom of setting a static variable, but that may just be my lack of Java knowledge). No lingering needed; the very concept smacks of bad C programming... highly

RE: Tomcat Shutdown

2009-03-10 Thread Aleksandr Elbakyan
So how to ping to application so that tomcat is going to be shutdown? --- On Tue, 3/10/09, Caldarale, Charles R chuck.caldar...@unisys.com wrote: From: Caldarale, Charles R chuck.caldar...@unisys.com Subject: RE: Tomcat Shutdown To: Tomcat Users List users@tomcat.apache.org Date: Tuesday

RE: Tomcat Shutdown

2009-03-10 Thread Caldarale, Charles R
From: Aleksandr Elbakyan [mailto:ramal...@yahoo.com] Subject: RE: Tomcat Shutdown So how to ping to application so that tomcat is going to be shutdown? I'm not sure I understand your question. When Tomcat receives a shutdown request (message on the shutdown port, ctrl-c on Windows

Re: Tomcat Shutdown

2009-03-10 Thread Kees Jan Koster
Dear Aleksandr, So how to ping to application so that tomcat is going to be shutdown? http://java.sun.com/javaee/5/docs/api/javax/servlet/ServletContextListener.html Register it in web.xml -- Kees Jan http://java-monitor.com/forum/ kjkos...@kjkoster.org 06-51838192 The secret of success

Re: Tomcat shutdown script initiates Heap dump collection

2009-01-22 Thread Prakash Nathan1
? Thanks -- View this message in context: http://www.nabble.com/Tomcat-shutdown-script-initiates-Heap-dump-collection-tp21421003p21612325.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To unsubscribe, e

RE: Tomcat shutdown script initiates Heap dump collection

2009-01-14 Thread Prakash Nathan1
CATALINA_OPTS='-Xms512M -Xmx1536M' Where can I find the values configured for JAVA_OPTS ? Please guide. Thanks Prakash -- View this message in context: http://www.nabble.com/Tomcat-shutdown-script-initiates-Heap-dump-collection-tp21421003p21463786.html Sent from the Tomcat - User mailing list

Re: Tomcat shutdown script initiates Heap dump collection

2009-01-14 Thread André Warnier
Prakash Nathan1 wrote: Hi Chuck In catalina.sh file, I could see that JAVA_OPTS and CATALINA_OPTS are being referenced as follows.. exec $_RUNJDB $JAVA_OPTS $CATALINA_OPTS \... However, the value for JAVA_OPTS is not defined in catalina.sh As I had already mentioned, ONLY CATALINA_OPTS are

RE: Tomcat shutdown script initiates Heap dump collection

2009-01-13 Thread Prakash Nathan1
let me know. Thanks -- View this message in context: http://www.nabble.com/Tomcat-shutdown-script-initiates-Heap-dump-collection-tp21421003p21444591.html Sent from the Tomcat - User mailing list archive at Nabble.com

RE: Tomcat shutdown script initiates Heap dump collection

2009-01-13 Thread Caldarale, Charles R
From: Prakash Nathan1 [mailto:mrap...@yahoo.com] Subject: RE: Tomcat shutdown script initiates Heap dump collection Where Can I get the JVM setting configured for running Tomcat? Are you refering to setenv.sh ? CATALINA_OPTS='-Xms512M -Xmx1536M That is one variable you can use; the other

Log 4j error on tomcat shutdown

2009-01-12 Thread Choudhury
Hi All, During tomcat (version 6.0.18 with jdk 1.5) shutdown , I get the following error in the console : log4j:ERROR LogMananger.repositorySelector was null likely due to error in class reloading, using NOPLoggerRepository. Whats wrong here ? What does this mean and how do I

RE: Log 4j error on tomcat shutdown

2009-01-12 Thread Mark Thomas
From: choudh...@labware.com [mailto:choudh...@labware.com] Hi All, During tomcat (version 6.0.18 with jdk 1.5) shutdown , I get the following error in the console : log4j:ERROR LogMananger.repositorySelector was null likely due to error in class reloading, using

Tomcat shutdown script initiates Heap dump collection

2009-01-12 Thread Prakash Nathan1
Hello It is observed that when ever we initiate tomcat shutdown script, Heap Dumps are collected in catalina.out log file. 1. Is this a normal behavior ? Will it have any impacts on performance ? 2. Could you please let us know the configuration which triggers the heap dump collection

RE: Tomcat shutdown script initiates Heap dump collection

2009-01-12 Thread Caldarale, Charles R
From: Prakash Nathan1 [mailto:mrap...@yahoo.com] Subject: Tomcat shutdown script initiates Heap dump collection Things you didn't bother to tell us: 1) Tomcat version you're using. 2) JRE/JDK version you're using. 3) Platform you're running on. Would you like us to guess? Heap Dumps

Tomcat ./shutdown

2009-01-07 Thread le
Hello, I use apache-tomcat-5.5.17 and sometimes when I call ./shutdown.sh, the java process which runs Tomcat still alive. Because this java process is still alive, the next call ./startup.sh does not work. Thus, I have to kill this Java process first. Could you please give me a hint how

Re: Tomcat ./shutdown

2009-01-07 Thread Kees Jan Koster
Dear Thinh, I use apache-tomcat-5.5.17 and sometimes when I call ./shutdown.sh, the java process which runs Tomcat still alive. Because this java process is still alive, the next call ./startup.sh does not work. Thus, I have to kill this Java process first. Could you please give me a

Re: Tomcat ./shutdown

2009-01-07 Thread Dennis Thrysøe
On 7Jan, 2009, at 16:11, l...@informatik.uni-hamburg.de wrote: Hello, I use apache-tomcat-5.5.17 and sometimes when I call ./shutdown.sh, the java process which runs Tomcat still alive. Because this java process is still alive, the next call ./startup.sh does not work. Thus, I have to

RE: Tomcat ./shutdown

2009-01-07 Thread Caldarale, Charles R
From: l...@informatik.uni-hamburg.de [mailto:l...@informatik.uni-hamburg.de] Subject: Tomcat ./shutdown I use apache-tomcat-5.5.17 and sometimes when I call ./shutdown.sh, the java process which runs Tomcat still alive. The usual cause of this is non-daemon threads improperly managed

Re: Tomcat ./shutdown

2009-01-07 Thread Gregor Schneider
Sometime there's an even more simple solution to it: Some applications just take ages when they're shut down. Very nice example for this is Apache Roller. Shutting down Tomcat without Roller goes instantly, shutting down Tomcat with Roller takes up to 5 minutes. So what happens if you shut down

Tomcat Shutdown Port as Variable

2008-10-15 Thread AFaller
Hi All - I have quite a few installs of Tomcat on the same server (same CATALINA_HOME, different CATALINA_BASE), and I am interested in making my configs a little more portable. I'm trying to make certain unique items in my server.xml variable ( ${variablename} ), being pulled from my

Re: Tomcat Shutdown Port as Variable

2008-10-15 Thread Rainer Jung
[EMAIL PROTECTED] wrote: Hi All - I have quite a few installs of Tomcat on the same server (same CATALINA_HOME, different CATALINA_BASE), and I am interested in making my configs a little more portable. I'm trying to make certain unique items in my server.xml variable ( ${variablename} ),

RE: Tomcat Shutdown Port as Variable

2008-10-15 Thread Martin Gainty
not necessarily endorse content contained within this transmission. To: users@tomcat.apache.org Subject: Tomcat Shutdown Port as Variable From: [EMAIL PROTECTED] Date: Wed, 15 Oct 2008 09:42:51 -0400 Hi All - I have quite a few installs of Tomcat on the same server (same

RE: Tomcat Shutdown Port as Variable

2008-10-15 Thread Caldarale, Charles R
From: Martin Gainty [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat Shutdown Port as Variable a shame that you cant specify that attribute via %JAVA_OPTS% As Rainer already pointed out, you can; the shutdown script does not use CATALINA_OPTS, but it does honor JAVA_OPTS. - Chuck

Re: Tomcat Shutdown Port as Variable

2008-10-15 Thread AFaller
I have quite a few installs of Tomcat on the same server (same CATALINA_HOME, different CATALINA_BASE), and I am interested in making my configs a little more portable. I'm trying to make certain unique items in my server.xml variable ( ${variablename} ), being pulled from my

Re: Tomcat shutdown event

2008-09-16 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 To whom it may concern, Tom Cat wrote: I have a servelet spawn a thread that should run until tomcat is shutdown. The problem is, when Tomcat is shut down, the thread keeps running. You need to define your thread as a daemon thread and it won't

Re: Tomcat shutdown event

2008-09-13 Thread Johnny Kewl
- Original Message - From: Tom Cat [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Saturday, September 13, 2008 1:13 AM Subject: Tomcat shutdown event Hello, I have a servelet spawn a thread that should run until tomcat is shutdown. The problem is, when Tomcat

Tomcat shutdown event

2008-09-12 Thread Tom Cat
Hello, I have a servelet spawn a thread that should run until tomcat is shutdown. The problem is, when Tomcat is shut down, the thread keeps running. Does Tomcat have a shutdown event that I could use to trigger the thread destruction? If not, is there any graceful way of handling this? Thanks

Re: Tomcat shutdown event

2008-09-12 Thread Konstantin Kolinko
2008/9/13 Tom Cat [EMAIL PROTECTED]: I have a servlet spawn a thread that should run until tomcat is shutdown. The problem is, when Tomcat is shut down, the thread keeps running. Does Tomcat have a shutdown event that I could use to trigger the thread destruction? If not, is there any

Tomcat shutdown

2008-03-31 Thread Andrew Hole
Hello! I have a cluster with two Tomcat's. When I shutdown one and the other still active I do not want to run valueunbound in the first. How do I do that? Basically: If (shutdown node 1 and node 2 is Active) then { do nothing; } else { business logic; } Thanks a lot

RE: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2008-01-16 Thread aschoedl
Caldarale, Charles R wrote: From: Michele Mazzucco [mailto:[EMAIL PROTECTED] The folder is created at tomcat startup but when I stop tomcat it still complains because it doesn't find the file SESSIONS.ser (i.e. the same error occurs). Looks a lot like an Axis problem after all:

RE: Tomcat Shutdown error transport error 202: bind failed

2008-01-16 Thread varunsuresh
I tired not giving $JPDA_OPTS to CATALINA_OPTS, but after that debugging wasnt hapenning at all. Caldarale, Charles R wrote: From: varunsuresh [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat Shutdown error transport error 202: bind failed export CATALINA_OPTS=$CATALINA_OPTS

RE: Tomcat Shutdown error transport error 202: bind failed

2008-01-11 Thread Caldarale, Charles R
From: varunsuresh [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat Shutdown error transport error 202: bind failed export CATALINA_OPTS=$CATALINA_OPTS $JPDA_OPTS The above is wrong. By appending JPDA_OPTS to CATALINA_OPTS, you end up with the JPDA settings twice on the command line. Just

Re: Tomcat Shutdown error transport error 202: bind failed

2008-01-11 Thread varunsuresh
://www.nabble.com/Tomcat-Shutdown-error-transport-error-202%3A-bind-failed-tp14737139p14753922.html Sent from the Tomcat - User mailing list archive at Nabble.com. - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e

Tomcat Shutdown error transport error 202: bind failed

2008-01-10 Thread varunsuresh
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address= I have this entry in /etc/hosts too. 127.0.0.1 localhost I use Jre-1.5.0_06 and apache-tomcat-6.0.13. Anyone have any ideas on how to eliminate this error? -- View this message in context: http://www.nabble.com/Tomcat

Re: Tomcat Shutdown error transport error 202: bind failed

2008-01-10 Thread Mark Thomas
varunsuresh wrote: These are my debug options -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,address=,server=y,suspend=n How are you setting these? Using JPDA_TRANSPORT etc works for me. Mark -

Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-13 Thread Michele Mazzucco
On 13 Dec 2007, at 00:52, Caldarale, Charles R wrote: From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown I've tried with a clean tomcat 6.0.13 setup where only axis2 1.3 was deployed (tomcat 5.5.20 behaves the same

Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-13 Thread Michele Mazzucco
Chuck, BTW I've set workDir in $CATALINA_HOME/conf/server.xml (inside the Host section) to point to a temp folder in my home. The folder and all subfolders are created, apart from axis2... so the error still occurs. What do you think? Thanks, Michele On 13 Dec 2007, at 11:29, Michele

RE: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-13 Thread Caldarale, Charles R
From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown BTW I've set workDir in $CATALINA_HOME/conf/server.xml (inside the Host section) to point to a temp folder in my home. Don't change the workDir attribute

Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-13 Thread Michele Mazzucco
On 13 Dec 2007, at 15:33, Caldarale, Charles R wrote: From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown BTW I've set workDir in $CATALINA_HOME/conf/server.xml (inside the Host section) to point to a temp folder

RE: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-13 Thread Caldarale, Charles R
From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown Where do I find the Context element related to axis2 (which is a servlet)? First you said axis2 is a webapp, now you say it's a servlet; I suspect

Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-13 Thread Michele Mazzucco
On 13 Dec 2007, at 16:35, Caldarale, Charles R wrote: From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown Where do I find the Context element related to axis2 (which is a servlet)? First you said axis2 is a webapp

RE: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-13 Thread Caldarale, Charles R
From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown The folder is created at tomcat startup but when I stop tomcat it still complains because it doesn't find the file SESSIONS.ser (i.e. the same error

[Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Michele Mazzucco
Some more details. I don't know whether this is a Tomcat or Axis2 issue, but the problem seems to be that the axis2 directory does not exist under $CATALINA_HOME/work/Catalina/localhost. Michele Begin forwarded message: From: Michele Mazzucco [EMAIL PROTECTED] Date: 12 December 2007

RE: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Caldarale, Charles R
From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown (Please don't cross-post to multiple lists; that makes following a thread nearly impossible.) Some more details. I don't know whether this is a Tomcat or Axis2

Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Michele Mazzucco
On 12 Dec 2007, at 13:54, Caldarale, Charles R wrote: From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown (Please don't cross-post to multiple lists; that makes following a thread nearly impossible.) I'm sorry Chuck

RE: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Caldarale, Charles R
From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown but the problem seems to be that the axis2 directory does not exist under $CATALINA_HOME/work/Catalina/localhost. Tomcat normally creates a directory for each

Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Michele Mazzucco
For some obscure reason the directory is deleted (!!!) and the same problem occurs. Michele On 12 Dec 2007, at 14:46, Caldarale, Charles R wrote: What happens if you manually create the axis2 directory? - To start a new

RE: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Caldarale, Charles R
From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown For some obscure reason the directory is deleted (!!!) and the same problem occurs. Sounds like you might have a somewhat malevolant webapp... Does your

Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Michele Mazzucco
? Michele On 12 Dec 2007, at 15:47, Caldarale, Charles R wrote: From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown For some obscure reason the directory is deleted (!!!) and the same problem occurs. Sounds like you

Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Martin Gainty
/local/michele bootstrap.jar Martin- - Original Message - From: Michele Mazzucco [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Wednesday, December 12, 2007 10:31 AM Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown For some obscure

RE: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Caldarale, Charles R
From: Martin Gainty [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown The serialised session files are kept in the temp folder No, they're kept in Tomcat's work directory, which is normally (and definitely in Michele's case

RE: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown

2007-12-12 Thread Caldarale, Charles R
From: Michele Mazzucco [mailto:[EMAIL PROTECTED] Subject: Re: [Axis2] FileNotFoundException (SESSIONS.ser) during tomcat shutdown I've tried with a clean tomcat 6.0.13 setup where only axis2 1.3 was deployed (tomcat 5.5.20 behaves the same) - no web services were deployed in axis2

RE: How to make Tomcat shutdown itself if the address it is trying to bind is already in use.

2007-11-30 Thread Shaji Thomas
. Thanks a lot for the suggestions and links. I really appreciate it. Shaji -Original Message- From: Gregor Schneider [mailto:[EMAIL PROTECTED] Sent: Thursday, November 29, 2007 3:27 AM To: Tomcat Users List Subject: Re: How to make Tomcat shutdown itself if the address it is trying to bind

Re: How to make Tomcat shutdown itself if the address it is trying to bind is already in use.

2007-11-29 Thread Gregor Schneider
Shaji, maybe this will do the trick: http://tomcat.apache.org/faq/security.html#8005 Cheers Gregor -- what's puzzlin' you, is the nature of my game gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2 gpgp-key available @ http://pgpkeys.pca.dfn.de:11371

Re: How to make Tomcat shutdown itself if the address it is trying to bind is already in use.

2007-11-28 Thread Gregor Schneider
if [ -z $(netstat -lnp | grep 8080) ] then echo Tomcat running exit -1 else [ continue with startup-script ] fi do the same for port 8009 (AJP) however, the best way would be to first check if tomcat is running before starting it up remember: a fool with a tool is still a

RE: How to make Tomcat shutdown itself if the address it is trying to bind is already in use.

2007-11-28 Thread Shaji Thomas
[mailto:[EMAIL PROTECTED] Sent: Wednesday, November 28, 2007 8:10 AM To: Tomcat Users List Subject: Re: How to make Tomcat shutdown itself if the address it is trying to bind is already in use. if [ -z $(netstat -lnp | grep 8080) ] then echo Tomcat running exit -1 else [ continue

Kernel Panic - Tomcat Shutdown

2007-05-09 Thread Rogerio Pazini
Hi, I´m just trying to configure a new server with RHEL 4.0 installed together with JDK 1.6.0 and Apache Tomcat/5.5.17 installed. We have no problem to start it up (Tomcat) but when it try to shut it down, I have many kernel panic messages and the machine got frozen. Does anybody had similar

Re: Kernel Panic - Tomcat Shutdown

2007-05-09 Thread David Delbecq
Kernel Panic happens due to bug at the kernel level. Normally, even deeply broken applications should not generate a kernel panic. Possible causes: 1) Broken network module, which generates an error during unbinding of tomcat from interface. Unless your interface model is very recent and kernel

Re: Kernel Panic - Tomcat Shutdown

2007-05-09 Thread Rogerio Pazini
David, tks 4 your email ... I didn´t try to follow what you suggested me yet regarding the hw (mem + netwk). Instead of that, I uninstalled JDK version 1.6.0_01 and installed 1.5.0_11 one. After that, I got no kernel panic messages to start or shutdown Tomcat. Does anyone know if there´s any

Re: Kernel Panic - Tomcat Shutdown

2007-05-09 Thread Leon Rosenberg
On 5/9/07, Rogerio Pazini [EMAIL PROTECTED] wrote: Does anyone know if there´s any incompatibility of this JDK version with RHEL 4.0 ? I think this is the false place to ask :-) regards Leon - To start a new topic, e-mail:

2nd Try for Advice on Tomcat Shutdown

2007-02-13 Thread Scott Danforth
Hmmm. I just joined this mailing list today, and I'm happy to see that there's lots of action. But, so far, nobody has responded to my posting. Maybe I'm asking about something so trivial that everybody thinks somebody else will respond... Anyway, having said that, I'll try again. Hopefully,

Re: 2nd Try for Advice on Tomcat Shutdown

2007-02-13 Thread Hassan Schroeder
On 2/13/07, Scott Danforth [EMAIL PROTECTED] wrote: Hmmm. I just joined this mailing list today, But, so far, nobody has responded to my posting. Maybe I'm asking about something so trivial or maybe you're just a wee bit impatient? :-) I kind of expect there must be something in Tomcat

<    1   2   3   >