Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread dkumar
> I suggest you have a read here: > https://tomcat.apache.org/tomcat-10.0-doc/config/http.html#SSL_Support > The documentation covers the details you need to correctly configure Tomcat > and SSL and links to a related page about SSL configuration. > Notice the line: > Each secure connector must d

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread calder
On Tue, Mar 16, 2021, 11:46 Robert Turner wrote: > I suggest you have a read here: > https://tomcat.apache.org/tomcat-10.0-doc/config/http.html#SSL_Support > The documentation covers the details you need to correctly configure Tomcat > and SSL and links to a related page about SSL configuration.

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread Robert Turner
I suggest you have a read here: https://tomcat.apache.org/tomcat-10.0-doc/config/http.html#SSL_Support The documentation covers the details you need to correctly configure Tomcat and SSL and links to a related page about SSL configuration. Notice the line: Each secure connector must define at leas

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread dkumar
> If you look at the stack trace, it tells you what the problem is: > Caused by: java.lang.IllegalArgumentException: No SSLHostConfig > element was found with the hostName [_default_] to match the > defaultSSLHostConfigName for the connector [https-openssl-nio-8443] > So it no longer looks like

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread Robert Turner
If you look at the stack trace, it tells you what the problem is: Caused by: java.lang.IllegalArgumentException: No SSLHostConfig element was found with the hostName [_default_] to match the defaultSSLHostConfigName for the connector [https-openssl-nio-8443] So it no longer looks like you are hi

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread dkumar
> Please provide full stacktrace Please find full catlina log and I have already shared server.xml in trail mail 16-Mar-2021 21:26:54.263 WARNING [main] org.apache.tomcat.util.digester.SetPropertiesRule.begin Match [Server/Service/Connector] failed to set property [compressableMimeType] to [

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread Maxim Solodovnik
Please provide full stacktrace On Tue, 16 Mar 2021 at 22:49, wrote: > > >> Your more recent exception log didn't include the "caused by" exception > > -- > >> which is the actual failure details. Double-check that and make sure > > it's > >> the same issue. > >> > >> Also, use netstat to confirm

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread dkumar
>> Your more recent exception log didn't include the "caused by" exception > -- >> which is the actual failure details. Double-check that and make sure > it's >> the same issue. >> >> Also, use netstat to confirm you aren't using the ports already. > Changing >> it may just find another conflict (a

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread Zero
On 3/16/21 3:57 PM, dku...@ccilindia.co.in wrote: Your more recent exception log didn't include the "caused by" exception -- which is the actual failure details. Double-check that and make sure it's the same issue. Also, use netstat to confirm you aren't using the ports already. Changing i

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread dkumar
> Your more recent exception log didn't include the "caused by" exception -- > which is the actual failure details. Double-check that and make sure it's > the same issue. > > Also, use netstat to confirm you aren't using the ports already. Changing > it may just find another conflict (although l

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread Robert Turner
Your more recent exception log didn't include the "caused by" exception -- which is the actual failure details. Double-check that and make sure it's the same issue. Also, use netstat to confirm you aren't using the ports already. Changing it may just find another conflict (although less likely). T

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread dkumar
> Deepak, > You already have some service listening on port 80 (IIS maybe?) > > > from mobile (sorry for typos ;) > > We have changed the port still getting same error > Maybe you have the same port configured twice in your conf/server.xml? > Please post *all* elements from your conf/server.x

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread Christopher Schultz
Deepak, On 3/16/21 09:03, dku...@ccilindia.co.in wrote: You already have some service listening on port 80 (IIS maybe?) from mobile (sorry for typos ;) We have changed the port still getting same error Maybe you have the same port configured twice in your conf/server.xml? Please post *all*

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread dkumar
You already have some service listening on port 80 (IIS maybe?) from mobile (sorry for typos ;) We have changed the port still getting same error 16-Mar-2021 18:09:38.299 INFO [main] org.apache.coyote.AbstractProtocol.init Initializing ProtocolHandler ["http-nio-81"] 16-Mar-2021 18:09:38.363

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread Maxim Solodovnik
You already have some service listening on port 80 (IIS maybe?) from mobile (sorry for typos ;) On Tue, Mar 16, 2021, 18:36 wrote: > Dear All, > > Unable to start tomcat 10.0.4 and getting error Failed to initialize > component. > /conf/server.xml configuration as below. > > minSpare

Re: Unable to start Tomcat 10.0.4

2021-03-16 Thread Robert Turner
It's saying port 80 is already in use. Make sure another process (like IIS) isn't using the port already, or change your configuration to a different port. You can use 'netstat' (with options) to determine which process is using the port already. On Tue., Mar. 16, 2021, 07:36 , wrote: > Dear Al

Re: Unable to start tomcat

2020-02-25 Thread dkumar
Dear Jason, Thank you for link. As per below link. I have started our Window Server and problem has been resolved. We are able to start our tomcat. But my worry is, I am unable to find out Root Cause of problem. And how to handle it in future. Do we have any way to monitor buffer space or queu

Re: Unable to start tomcat

2020-02-25 Thread Jason Wee
have you try google? https://stackoverflow.com/questions/4415175/an-operation-on-a-socket-could-not-be-performed-because-the-system-lacked-suffi On Wed, Feb 26, 2020 at 2:47 PM wrote: > > Dear Jason, > > Thank for your reply. I am unable to understand below hint. Will you > please help me out. Wh

Re: Unable to start tomcat

2020-02-25 Thread dkumar
Dear Jason, Thank for your reply. I am unable to understand below hint. Will you please help me out. What action should I take to start my tomcat. And how I can see my buffer space or queue size. -- This looks informative and should give u hint and where you should begin troubleshooting. o

Re: Unable to start tomcat

2020-02-25 Thread Jason Wee
This looks informative and should give u hint and where you should begin troubleshooting. org.apache.tomcat.jni.Error: 730055: An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full. On Wed, Feb 26, 2020 at 2:30 PM wrote: > >

Re: Unable to start tomcat with Security Manager

2019-07-01 Thread Jeff
Here's the error I see only when starting/using SecurityManager. If I start Tomcat without -secuirty, it loads fine. Greatly appreciated if someone can explain what this means and how I can fix it. TIA. 01-Jul-2019 05:59:21.623 SEVERE [localhost-startStop-1] org.apache.catalina.core.StandardCon

Re: Unable to start tomcat with Security Manager

2019-06-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jeff, Aha. There is a "SEVERE .. [/supportcentral] startup failed due to previous errors". If no errors are showing in catalina.out, check the other log files like perhaps locahost-*.log in your logs directory. At some point, the web application i

Re: Unable to start tomcat with Security Manager

2019-06-27 Thread Jeff
Thanks Chris. How can I determine what is causing it to stop? Within seconds of starting it fails "due to previous errors" but the only thing mentioned before is regarding "Deploying configuration descriptor" which I didn't think it would cause tomcat not to start. Both manager.xml and host-man

Re: Unable to start tomcat with Security Manager

2019-06-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jeff, On 6/27/19 09:24, Jeff wrote: > Hello all, > > Hit a roadblock trying to start tomcat with Security Manager and > don't even know where to start looking. Any help would be > appreciated. > > catalina.out: 27-Jun-2019 06:01:57.627 INFO [main

RE: Unable to start tomcat as a service.

2014-04-08 Thread Jeffrey Janner
> -Original Message- > From: Konstantin Kolinko [mailto:knst.koli...@gmail.com] > Sent: Tuesday, April 08, 2014 5:24 AM > To: Tomcat Users List > Subject: Re: Unable to start tomcat as a service. > > 2014-04-08 13:42 GMT+04:00 akshay jain : > > Hi, > >

Re: Unable to start tomcat as a service.

2014-04-08 Thread Konstantin Kolinko
2014-04-08 13:42 GMT+04:00 akshay jain : > Hi, > > I downloaded *apache-tomcat-7.0.52-windows-x64.zip* from the apache > website. > I am running windows 7 64 bit operating system. > > I have setup the file setenv.bat file and apache starts without any problem > when started using startup.bat script

RE: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread javier_espana
email changed to javier_esp...@hna.honda.com. Please update your contact information. Thank you.*** From: "Hyde, Howard" To: Tomcat Users List , Date: 02/06/2014 02:27 PM Subject: RE: unable to start Tomcat through the Windows Services panel Javier, Thank you fo

RE: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread Hyde, Howard
a.com [mailto:javier_esp...@hna.honda.com] Sent: Thursday, February 06, 2014 2:12 PM To: Tomcat Users List Subject: Re: unable to start Tomcat through the Windows Services panel That did it. It works fine now. Thank you very much Thomas Javier España Sr. Technical Analyst Honda North American Services

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread javier_espana
April 1, 2013 my email changed to javier_esp...@hna.honda.com. Please update your contact information. Thank you.*** From: Mark Thomas To: Tomcat Users List , Date: 02/06/2014 11:57 AM Subject:Re: unable to start Tomcat through the Windows Services panel On 06/02/2014 19:51

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread Mark Eggers
ts of interest, could you open up a command line window and type: java -version echo %JRE_HOME% echo %JAVA_HOME% and paste the output into a response on the list? . . . . just my two cents. /mde/ From: André Warnier To: Tomcat Users List , Date: 02/06/2014 11:14 AM Subject:

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread Mark Thomas
On 06/02/2014 19:51, javier_esp...@hna.honda.com wrote: > In some other part of the documentation it says to > download the binary version and expand it in its own directory, which I > did, but I can not find a Windows program that will install it and set it > up as a service. Try the download pag

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread javier_espana
02/06/2014 11:14 AM Subject: Re: unable to start Tomcat through the Windows Services panel javier_esp...@hna.honda.com wrote: > Andre: > I used the batch file "SERVICE.BAT INSTALL" without any additional > parameters. Was I missing some parameter? Possibly. Dependin

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread André Warnier
javier_esp...@hna.honda.com wrote: Andre: I used the batch file "SERVICE.BAT INSTALL" without any additional parameters. Was I missing some parameter? Possibly. Depending on your particulat case, you may have needed to specifiy some option, and because you did not, it may have placed a wro

RE: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread javier_espana
27;Tomcat Users List'" , "'Tomcat Users List'" , Date: 02/06/2014 08:43 AM Subject:RE: unable to start Tomcat through the Windows Services panel > -Original Message- > From: André Warnier [mailto:a...@ice-sa.com] > Sent: Thursday, Febru

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread javier_espana
4514 Email: javier_esp...@hna.honda.com www.honda.com ***Beginning April 1, 2013 my email changed to javier_esp...@hna.honda.com. Please update your contact information. Thank you.*** From: "Howard W. Smith, Jr." To: Tomcat Users List , Date: 02/06/2014 08:09 AM Subject:

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread André Warnier
André Warnier wrote: Hi. javier_esp...@hna.honda.com wrote: OK, this is what I see in the Event Viewer under General tab "The tomcat7 service terminated with service-specific error Incorrect function.." Let's start from the beginning. If you don't get logfiles in the Tomcat/logs directory,

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread Howard W. Smith, Jr.
On Thu, Feb 6, 2014 at 11:42 AM, Jeffrey Janner wrote: > > -Original Message- > > From: André Warnier [mailto:a...@ice-sa.com] > > Sent: Thursday, February 06, 2014 10:33 AM > > To: Tomcat Users List > > Subject: Re: unable to start Tomcat through the Win

RE: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread Jeffrey Janner
> -Original Message- > From: André Warnier [mailto:a...@ice-sa.com] > Sent: Thursday, February 06, 2014 10:33 AM > To: Tomcat Users List > Subject: Re: unable to start Tomcat through the Windows Services panel > > Hi. > > javier_esp...@hna.honda.com wrote: &g

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread André Warnier
Hi. javier_esp...@hna.honda.com wrote: OK, this is what I see in the Event Viewer under General tab "The tomcat7 service terminated with service-specific error Incorrect function.." Let's start from the beginning. If you don't get logfiles in the Tomcat/logs directory, then chances are that

Re: unable to start Tomcat through the Windows Services panel

2014-02-06 Thread Howard W. Smith, Jr.
On Wed, Feb 5, 2014 at 2:09 PM, wrote: > OK, this is what I see in the Event Viewer under General tab > "The tomcat7 service terminated with service-specific error Incorrect > function.." > > Under Details tab, I see the following in XML view > - http://schemas.microsoft.com/win/2004/08/events/ev

Re: unable to start Tomcat through the Windows Services panel

2014-02-05 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Chris, On 2/5/14, 1:36 PM, chris derham wrote: > On 5 February 2014 16:34, wrote: >> How do I get to the Windows Event Viewer in Windows 7? > > http://lmgtfy.com/?q=How+do+I+get+to+the+Windows+Event+Viewer+in+Windows+7 > > >> Thanks > > Your we

Re: unable to start Tomcat through the Windows Services panel

2014-02-05 Thread javier_espana
Please update your contact information. Thank you.*** From: chris derham To: Tomcat Users List , Date: 02/05/2014 10:37 AM Subject: Re: unable to start Tomcat through the Windows Services panel Sent by:cjder...@gmail.com On 5 February 2014 16:34, wrote: > How do I get

Re: unable to start Tomcat through the Windows Services panel

2014-02-05 Thread chris derham
On 5 February 2014 16:34, wrote: > How do I get to the Windows Event Viewer in Windows 7? http://lmgtfy.com/?q=How+do+I+get+to+the+Windows+Event+Viewer+in+Windows+7 > Thanks Your welcome. Anytime you want something from google, please ask here first Chris

Re: unable to start Tomcat through the Windows Services panel

2014-02-05 Thread David kerber
g April 1, 2013 my email changed to javier_esp...@hna.honda.com. Please update your contact information. Thank you.*** From: André Warnier To: Tomcat Users List , Date: 02/05/2014 01:29 AM Subject: Re: unable to start Tomcat through the Windows Services panel javier_esp..

Re: unable to start Tomcat through the Windows Services panel

2014-02-05 Thread javier_espana
***Beginning April 1, 2013 my email changed to javier_esp...@hna.honda.com. Please update your contact information. Thank you.*** From: David kerber To: Tomcat Users List , Date: 02/05/2014 10:07 AM Subject:Re: unable to start Tomcat through the Windows Services panel On 2/5/2014 1:01

Re: unable to start Tomcat through the Windows Services panel

2014-02-05 Thread javier_espana
4 01:29 AM Subject: Re: unable to start Tomcat through the Windows Services panel javier_esp...@hna.honda.com wrote: > Sorry for my previous attempt. > > I installed Tomcat v7.0.42 as a Windows server (I am running Windows 7). > When I attempt to start it, I get the followin

Re: unable to start Tomcat through the Windows Services panel

2014-02-05 Thread David kerber
: Tomcat Users List , Date: 02/04/2014 09:31 PM Subject:Re: unable to start Tomcat through the Windows Services panel 2014-02-04 : Thank you Mark, but it did not make a difference. Any other idea? Do you have anything in the log directory of your tomcat installation? There should

Re: unable to start Tomcat through the Windows Services panel

2014-02-05 Thread javier_espana
...@hna.honda.com www.honda.com ***Beginning April 1, 2013 my email changed to javier_esp...@hna.honda.com. Please update your contact information. Thank you.*** From: Cédric Couralet To: Tomcat Users List , Date: 02/04/2014 09:31 PM Subject:Re: unable to start Tomcat through the

Re: unable to start Tomcat through the Windows Services panel

2014-02-05 Thread André Warnier
javier_esp...@hna.honda.com wrote: Sorry for my previous attempt. I installed Tomcat v7.0.42 as a Windows server (I am running Windows 7). When I attempt to start it, I get the following message "Windows could not start the Tomcat7 on Local Computer. For more information, review the System Even

Re: unable to start Tomcat through the Windows Services panel

2014-02-04 Thread Cédric Couralet
2014-02-04 : > Thank you Mark, but it did not make a difference. Any other idea? > Do you have anything in the log directory of your tomcat installation? There should be log for commons-daemon (used to launch the service) and maybe for tomcat. ---

Re: unable to start Tomcat through the Windows Services panel

2014-02-04 Thread javier_espana
***Beginning April 1, 2013 my email changed to javier_esp...@hna.honda.com. Please update your contact information. Thank you.*** From: Mark Eggers To: Tomcat Users List , Date: 02/04/2014 01:14 PM Subject:Re: unable to start Tomcat through the Windows Services panel On 2/4/2014

Re: unable to start Tomcat through the Windows Services panel

2014-02-04 Thread Mark Eggers
On 2/4/2014 11:25 AM, javier_esp...@hna.honda.com wrote: Sorry for my previous attempt. I installed Tomcat v7.0.42 as a Windows server (I am running Windows 7). When I attempt to start it, I get the following message "Windows could not start the Tomcat7 on Local Computer. For more information,

Re: Unable to start tomcat (JDBC-ORACLE CONNECTIVITY ISSUE WITYH OCI8 DRIVER using oracle 11g client.)

2013-04-06 Thread Michael-O
Am 2013-04-06 10:30, schrieb dku...@ccilindia.co.in: Dear All, JDBC-ORACLE CONNECTIVITY ISSUE WITYH OCI8 DRIVER using oracle 11g client.. I am getting below error when i m trying to access oracle db using oracle 11g client. It works with earlier oracle client versions. how do i resolve this. is

RE: Unable to start tomcat

2011-02-19 Thread Caldarale, Charles R
> From: Lanre Abiwon [mailto:angeli...@gmail.com] > Subject: Unable to start tomcat > I'm running tomcat 5.5.23 on CentOS 5.5. Is this a real Tomcat from tomcat.apache.org, or a 3rd-party repackaged version? If the latter, you'll need to get support from your supplier, since we have no idea w

Re: Fwd: Re: RE: Unable to start Tomcat 6 on Windows Server 2003

2010-06-27 Thread David Smith
FoundError: >> org/apache/juli/loggi >> ng/LogFactory >> at org.apache.catalina.startup.Bootstrap.(Bootstrap.java:54) >> Caused by: java.lang.ClassNotFoundException: >> org.apache.juli.logging.LogFactory >> at java.net.URLC

Re: Fwd: Re: RE: Unable to start Tomcat 6 on Windows Server 2003

2010-06-27 Thread Pid
at sun.misc.Launcher$ExtClassLoader.findClass(Launcher.java:229) > at java.lang.ClassLoader.loadClass(ClassLoader.java:307) > at java.lang.ClassLoader.loadClass(ClassLoader.java:252) > at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:320) >

Fwd: Re: RE: Unable to start Tomcat 6 on Windows Server 2003

2010-06-27 Thread 1destroyer1
ue which one could causing this :( tommorrow i will ask the OS guys if they could disable them... kind regards, dessi Original-Nachricht > Datum: Sun, 27 Jun 2010 11:25:08 -0400 > Von: Martin Gainty > An: 1destroy...@gmx.de > Betreff: RE: Unable to start Tomcat 6

RE: Unable to start Tomcat 6 on Windows Server 2003

2010-06-27 Thread Caldarale, Charles R
> From: David Smith [mailto:david.sm...@cornell.edu] > Subject: Re: Unable to start Tomcat 6 on Windows Server 2003 > > A second command prompt window?? I've never seen tomcat > do such a thing. You must be joking - Tomcat has always done that, at least since 5.0, when run

Re: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread 1destroyer1
hi, here is the whole output from the command box: D:\ttest\bin>dir Volume in drive D is DataDrive Volume Serial Number is 78F8-015F Directory of D:\ttest\bin 06/27/2010 08:41 AM . 06/27/2010 08:41 AM .. 06/25/2010 07:54 PM22,110 bootstrap.jar 06/25/2

Re: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread David Smith
On 6/26/2010 12:19 PM, 1destroy...@gmx.de wrote: > What happens if you run startup.bat? > > A second dos box shortly appear and is closing immediately... > > Start a command prompt first, then manually type the startup.bat command > - don't double click the file to run it. > > What does

Re: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread David Smith
On 6/26/2010 3:33 PM, 1destroy...@gmx.de wrote: > hi, as already written: > > "The Tomcat do not start with „catalina.bat run“ in the box is > written that he can not find "Class > org/apache/juli/logging/LogFactory"... > The file is definitely there..." > > kind regards, dessi > Please post t

Re: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread 1destroyer1
hi, as already written: "The Tomcat do not start with „catalina.bat run“ in the box is written that he can not find "Class org/apache/juli/logging/LogFactory"... The file is definitely there..." kind regards, dessi -- GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT! Jetzt freischalten unt

Re: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread Mark Thomas
On 26/06/2010 17:19, 1destroy...@gmx.de wrote: i started "startup.bat" in a command box -> all env variables are shown, no failures, and pathes are correct and a second command box shortly appear and immediatly closed again. no chance to read it out :) Use: catalina.bat run That will keep

Re: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread 1destroyer1
Original-Nachricht > Datum: Sat, 26 Jun 2010 17:05:00 +0100 > Von: Pid > An: Tomcat Users List > Betreff: Re: Unable to start Tomcat 6 on Windows Server 2003 > On 26/06/2010 15:48, 1destroy...@gmx.de wrote: > >> On 26/06/2010 09:00, 1destroy..

Re: RE: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread 1destroyer1
on the system. kind regards, dessi Original-Nachricht > Datum: Sat, 26 Jun 2010 11:21:43 -0400 > Von: Martin Gainty > An: Tomcat Users List > Betreff: RE: Unable to start Tomcat 6 on Windows Server 2003 > > #define ESRCH 3 /* No such process */ > &g

Re: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread Pid
On 26/06/2010 15:48, 1destroy...@gmx.de wrote: >> On 26/06/2010 09:00, 1destroy...@gmx.de wrote: >>> Hi, >>> >>> I have a problem starting a TomCat on a Windows 2003 Server: >>> >>> Java Version installed: 1.6.0_11 JRE & JDK >>> Tomcat Version used for tests: 6.0.16 & 6.0.26 >>> >>> First i insta

RE: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread Martin Gainty
rmation seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant donné que les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Sat, 26 Jun 2010 16:48:07 +0200 > From: 1destro

Re: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread 1destroyer1
> On 26/06/2010 09:00, 1destroy...@gmx.de wrote: > > Hi, > > > > I have a problem starting a TomCat on a Windows 2003 Server: > > > > Java Version installed: 1.6.0_11 JRE & JDK > > Tomcat Version used for tests: 6.0.16 & 6.0.26 > > > > First i installed the Tomcat.exe on the server -> Tomcat d

Re: Unable to start Tomcat 6 on Windows Server 2003

2010-06-26 Thread Pid
On 26/06/2010 09:00, 1destroy...@gmx.de wrote: > Hi, > > I have a problem starting a TomCat on a Windows 2003 Server: > > Java Version installed: 1.6.0_11 JRE & JDK > Tomcat Version used for tests: 6.0.16 & 6.0.26 > > First i installed the Tomcat.exe on the server -> Tomcat do not start Where

Re: unable to start tomcat 5.5.29 on mac 10.6.3

2010-06-12 Thread Guan Yu
i was stupid. i extracted the admin app then copied the folders to tomcat home in Finder. Mac replaces everything in the folders. files in existing folders were gone. thanks for your help. On 12-Jun-2010, at 10:23 PM, Pid wrote: > On 12/06/2010 15:06, Guan Yu wrote: >> no, i didn't. it's a fres

Re: unable to start tomcat 5.5.29 on mac 10.6.3

2010-06-12 Thread Guan Yu
double click it in Finder. On 12-Jun-2010, at 10:23 PM, Pid wrote: > On 12/06/2010 15:06, Guan Yu wrote: >> no, i didn't. it's a fresh OS installation. i only installed Eclipse before >> Tomcat. Eclipse installation was merely extraction from compressed file. > > How did you unzip it? Manuall

Re: unable to start tomcat 5.5.29 on mac 10.6.3

2010-06-12 Thread Pid
On 12/06/2010 15:06, Guan Yu wrote: > no, i didn't. it's a fresh OS installation. i only installed Eclipse before > Tomcat. Eclipse installation was merely extraction from compressed file. How did you unzip it? Manually or by double-clicking the file with a mouse? p > On 12-Jun-2010, at 8:32

Re: unable to start tomcat 5.5.29 on mac 10.6.3

2010-06-12 Thread Guan Yu
no, i didn't. it's a fresh OS installation. i only installed Eclipse before Tomcat. Eclipse installation was merely extraction from compressed file. gy On 12-Jun-2010, at 8:32 PM, Pid wrote: > On 12/06/2010 08:11, Guan Yu wrote: >> I'm using Mac OS X 10.6.3. I downloaded and installed the .gz o

Re: unable to start tomcat 5.5.29 on mac 10.6.3

2010-06-12 Thread Pid
On 12/06/2010 08:11, Guan Yu wrote: > I'm using Mac OS X 10.6.3. I downloaded and installed the .gz of Tomcat > 5.5.29 to $HOME/tomcat-5.5.29/. when i tried to start tomcat by executing > startup.sh, i saw the following output on screen. But the server didn't start > up and there was error in ca

Re: unable to start Tomcat in Windows 7 prof - 64 bit

2010-04-08 Thread Mark Thomas
gt; karthick > > >> From: chuck.caldar...@unisys.com >> To: users@tomcat.apache.org >> Date: Fri, 2 Apr 2010 07:27:16 -0500 >> Subject: RE: unable to start Tomcat in Windows 7 prof - 64 bit >> >>> From: Martin Gainty [mailto:mgai...@hotmail.com] >>

RE: unable to start Tomcat in Windows 7 prof - 64 bit

2010-04-07 Thread Karthick Ragunath
> Date: Fri, 2 Apr 2010 07:27:16 -0500 > Subject: RE: unable to start Tomcat in Windows 7 prof - 64 bit > > > From: Martin Gainty [mailto:mgai...@hotmail.com] > > Subject: RE: unable to start Tomcat in Windows 7 prof - 64 bit > > > > also the dlls located in %JRE_

RE: unable to start Tomcat in Windows 7 prof - 64 bit

2010-04-02 Thread Caldarale, Charles R
> From: Martin Gainty [mailto:mgai...@hotmail.com] > Subject: RE: unable to start Tomcat in Windows 7 prof - 64 bit > > also the dlls located in %JRE_HOME%\bin\server need to be 64bit No, they don't *need* to be 64-bit; rather, they must match the mode of the tomcat6.exe la

RE: unable to start Tomcat in Windows 7 prof - 64 bit

2010-04-02 Thread Martin Gainty
bilité pour le contenu fourni. > Date: Fri, 2 Apr 2010 09:49:29 +0200 > From: a...@ice-sa.com > To: users@tomcat.apache.org > Subject: Re: unable to start Tomcat in Windows 7 prof - 64 bit > > Karthick Ragunath wrote: > > > > Hi, > > > > I am unabl

RE: unable to start Tomcat in Windows 7 prof - 64 bit

2010-04-02 Thread Caldarale, Charles R
> From: Karthick Ragunath [mailto:karthick.ragun...@live.com] > Subject: unable to start Tomcat in Windows 7 prof - 64 bit > > classpath Remove the CLASSPATH environment variable; you should never, ever use it, especially not with Tomcat. > jakarta_service_*.log > - > [2010-

Re: unable to start Tomcat in Windows 7 prof - 64 bit

2010-04-02 Thread André Warnier
Karthick Ragunath wrote: Hi, I am unable to start Tomcat in Windows 7 professional edition - 64 bit. http://www.lmgtfy.com/?q=tomcat+%2Bwindows+%2B64bit which (thanks to TGSMITS) is back to its usual self. - To uns

Re: Unable to start tomcat server 6x

2008-12-15 Thread Partha
Gregor Schneider wrote: > > Patha, > > I think you've received enough pointers here already. > > If you're logged in as root and you can't even write into a directory, > it's pretty likely that either > > - the device is mounted read-only (check with mount -l) > > - the device is somewhat c

Re: Unable to start tomcat server 6x

2008-12-15 Thread Gregor Schneider
Patha, I think you've received enough pointers here already. If you're logged in as root and you can't even write into a directory, it's pretty likely that either - the device is mounted read-only (check with mount -l) - the device is somewhat corrupted (either the device or the RAID-controller

Re: Unable to start tomcat server 6x

2008-12-14 Thread Partha
Partha Goswami wrote: > > Oh, Then, type > # uname -a > and post out put here > > On Mon, Dec 15, 2008 at 10:34 AM, Partha wrote: > >> >> >> >> Partha Goswami wrote: >> > >> > Actually, If anyone use Tomcat in Solaris Zones, then, /usr/local or >> /usr >> > all is come read only mode, by def

Re: Unable to start tomcat server 6x

2008-12-14 Thread Partha Goswami
Oh, Then, type # uname -a and post out put here On Mon, Dec 15, 2008 at 10:34 AM, Partha wrote: > > > > Partha Goswami wrote: > > > > Actually, If anyone use Tomcat in Solaris Zones, then, /usr/local or /usr > > all is come read only mode, by default. so, Its need to know, Which oS > > > > On Sa

Re: Unable to start tomcat server 6x

2008-12-14 Thread Partha
Partha Goswami wrote: > > Actually, If anyone use Tomcat in Solaris Zones, then, /usr/local or /usr > all is come read only mode, by default. so, Its need to know, Which oS > > On Sat, Dec 13, 2008 at 6:32 PM, David Smith wrote: > >> I think the important message is here: >> >> > /usr/local/

Re: Unable to start tomcat server 6x

2008-12-13 Thread Partha Goswami
Actually, If anyone use Tomcat in Solaris Zones, then, /usr/local or /usr all is come read only mode, by default. so, Its need to know, Which oS On Sat, Dec 13, 2008 at 6:32 PM, David Smith wrote: > I think the important message is here: > > > /usr/local/apache-tomcat-6.0.18/bin/catalina.sh: lin

Re: Unable to start tomcat server 6x

2008-12-13 Thread Hassan Schroeder
On Sat, Dec 13, 2008 at 12:15 AM, Partha wrote: > I am unable to restart apache-tomcat-6.0.18.When i try to run the startup.sh > it gives the following error: > touch: cannot touch `/usr/local/apache-tomcat-6.0.18/logs/catalina.out': > Read-only file system Last time I saw a "spontaneous" read-

Re: Unable to start tomcat server 6x

2008-12-13 Thread André Warnier
Partha wrote: [...] Isn't this a clue ? touch: cannot touch `/usr/local/apache-tomcat-6.0.18/logs/catalina.out': Read-only file system - To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-m

Re: Unable to start tomcat server 6x

2008-12-13 Thread David Smith
I think the important message is here: > /usr/local/apache-tomcat-6.0.18/bin/catalina.sh: line 292: > /usr/local/apache-tomcat-6.0.18/logs/catalina.out: Read-only file system In particular the phrase "Read-only file system" suggests the disk/partition tomcat is installed on was mounted read-only

Re: Unable to start tomcat server 6x

2008-12-13 Thread Gregor Schneider
Hi Parha, never ever run tomcat as root - that's a security-issue. I hope you haven't followed the hint to chmod to 777 - that's anything but a good idea. to solve the issue, procceed like this: - as root , do - create a user tomcat - chown -R tomcat /usr/local/apache-tomcat-6.0.18 - su tomc

Re: Unable to start tomcat server 6x

2008-12-13 Thread Partha Goswami
try chmod 777 /usr/local On Sat, Dec 13, 2008 at 3:20 PM, Partha Goswami wrote: > You are Running it on Solaris Zones?? > > On Sat, Dec 13, 2008 at 2:38 PM, Partha wrote: > >> >> >> >> Gregor Schneider wrote: >> > >> > what user are you logged in as? >> > >> > what does >> > ls -l /usr/local/apa

Re: Unable to start tomcat server 6x

2008-12-13 Thread Partha Goswami
You are Running it on Solaris Zones?? On Sat, Dec 13, 2008 at 2:38 PM, Partha wrote: > > > > Gregor Schneider wrote: > > > > what user are you logged in as? > > > > what does > > ls -l /usr/local/apache-tomcat-6.0.18/logs/catalina.out > > and > > ls -l /usr/local/apache-tomcat-6.0.18 > > > > giv

Re: Unable to start tomcat server 6x

2008-12-13 Thread Varun Puttewar
Are you logged on as root user, as we can see write access is to only root user for catalina.out file. On Sat, Dec 13, 2008 at 2:38 PM, Partha wrote: > > > > Gregor Schneider wrote: > > > > what user are you logged in as? > > > > what does > > ls -l /usr/local/apache-tomcat-6.0.18/logs/catalina.

Re: Unable to start tomcat server 6x

2008-12-13 Thread Partha
Gregor Schneider wrote: > > what user are you logged in as? > > what does > ls -l /usr/local/apache-tomcat-6.0.18/logs/catalina.out > and > ls -l /usr/local/apache-tomcat-6.0.18 > > give? > > gregor > -- > just because your paranoid, doesn't mean they're not after you... > gpgp-fp: 79A84FA5

Re: Unable to start tomcat server 6x

2008-12-13 Thread Gregor Schneider
what user are you logged in as? what does ls -l /usr/local/apache-tomcat-6.0.18/logs/catalina.out and ls -l /usr/local/apache-tomcat-6.0.18 give? gregor -- just because your paranoid, doesn't mean they're not after you... gpgp-fp: 79A84FA526807026795E4209D3B3FE028B3170B2 gpgp-key available @ ht

RE: Unable to start Tomcat due to DISPLAY variable issue

2008-08-26 Thread Jayaraman, Gopinath
42 PM To: Tomcat Users List Subject: Re: Unable to start Tomcat due to DISPLAY variable issue Oh dear .. I've experienced this before. It seems that your server is running in a headless environment or without X or desktop libraries installed. Could be a init 3 in unix environment. In this case

RE: Unable to start Tomcat due to DISPLAY variable issue

2008-08-26 Thread Jayaraman, Gopinath
M To: Tomcat Users List Subject: Re: Unable to start Tomcat due to DISPLAY variable issue - Original Message - From: "Jayaraman, Gopinath " <[EMAIL PROTECTED]> To: Sent: Tuesday, August 26, 2008 7:09 AM Subject: Unable to start Tomcat due to DISPLAY variable issue Hi Ev

Re: Unable to start Tomcat due to DISPLAY variable issue

2008-08-25 Thread Albert Kam
Oh dear .. I've experienced this before. It seems that your server is running in a headless environment or without X or desktop libraries installed. Could be a init 3 in unix environment. In this case, if your JDK is >= 1.4.x, it's easy to solve. =) You just need to edit your catalina.sh Add t

Re: Unable to start Tomcat due to DISPLAY variable issue

2008-08-25 Thread Johnny Kewl
- Original Message - From: "Jayaraman, Gopinath " <[EMAIL PROTECTED]> To: Sent: Tuesday, August 26, 2008 7:09 AM Subject: Unable to start Tomcat due to DISPLAY variable issue Hi Everyone, I am having this typical issue which many have faced which is below: Graphics ENV testing has

Re: Unable to Start Tomcat 6 with Catalina Base Set

2008-06-09 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Stephen, Stephen Wick wrote: |> I installed Tomcat 6.0.16 to /usr/local/apache-tomcat-6.0.16 (this is |> my CATALINA_HOME). Then I made an instance of tomcat at |> /var/www/tomcat-instances/default-tomcat6 (this is my CATALINA_BASE). |> |> My CATALI

  1   2   >