Re: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-13 Thread Dan Armbrust
On Fri, May 7, 2010 at 9:01 AM, Karthick Ragunath
karthick.ragun...@live.com wrote:
 Some other applications using Java requires 32bit always. (Eclipse requires 
 32 bit JVM which otherwise would result
 in JVM termination error during Eclipse startup).


That's not true either.  Once again, you need to match your eclipse
version (32 bit or 64 bit) to your JVM version.

Eclipse is built for both (though for some reason I don't understand,
they don't advertise the 64 bit version for windows on the
easy-to-find download page)

You can find the 64 bit version of Eclipse for Windows here:

http://download.eclipse.org/eclipse/downloads/drops/R-3.5.2-201002111343/index.php

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-08 Thread Karthick Ragunath

 From: tommy...@gmail.com
 To: users@tomcat.apache.org
 Subject: RE: tomcat 6 (windows 7-  64 bits) doesn't start
 Date: Fri, 7 May 2010 18:34:03 -0700
 
 Karthick,
 
 You can run Tomcat with 32 bit JVM on 64 bit Windows.  Uninstall the current
 Tomcat service you have.  Set the JAVA_HOME environment in the System
 Variables to the proper location and reboot.  Download Tomcat, the 32 bit
 version of Windows zip file, and install the service via the batch file.

Thanks,,

 I got Tomcat working with 32-bit JVM.(with additional work as mentioned 
below) 
 
 Installed 32-bit JVM, downloaded apache-tomcat-6.0.26-windows-x86.zip and 
extracted to c:\apache\.

 I tried running the $CATALINA_HOME\bin\startup.bat. It started the console 
and i was able to access the index page on my localhost

 But when i tried to register Tomcat as Service by running service.bat it 
failed. 
Copying msvcr71.dll from $JRE_HOME\jre6\bin into $CATALINA_HOME\bin\ solved 
my problem. Now i can register Tomcat as a Service by clicking on 
service.bat. 

 Any idea on why i am in need of this dll here..

warm regards
karthick
  
_
The amazing world in sharp snaps
http://news.in.msn.com/gallery/archive.aspx

RE: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-08 Thread Tommy Pham
 -Original Message-
 From: Karthick Ragunath [mailto:karthick.ragun...@live.com]
 Sent: Saturday, May 08, 2010 1:52 AM
 To: users@tomcat.apache.org
 Subject: RE: tomcat 6 (windows 7- 64 bits) doesn't start
 
 
  From: tommy...@gmail.com
  To: users@tomcat.apache.org
  Subject: RE: tomcat 6 (windows 7-  64 bits) doesn't start
  Date: Fri, 7 May 2010 18:34:03 -0700
 
  Karthick,
 
  You can run Tomcat with 32 bit JVM on 64 bit Windows.  Uninstall the
  current Tomcat service you have.  Set the JAVA_HOME environment in the
  System Variables to the proper location and reboot.  Download Tomcat,
  the 32 bit version of Windows zip file, and install the service via the
batch
 file.
 
 Thanks,,
 
  I got Tomcat working with 32-bit JVM.(with additional work as
mentioned
 below)
 
  Installed 32-bit JVM, downloaded apache-tomcat-6.0.26-windows-x86.zip
 and extracted to c:\apache\.
 
  I tried running the $CATALINA_HOME\bin\startup.bat. It started the
 console and i was able to access the index page on my localhost
 
  But when i tried to register Tomcat as Service by running
service.bat it
 failed.
 Copying msvcr71.dll from $JRE_HOME\jre6\bin into
 $CATALINA_HOME\bin\ solved my problem. Now i can register Tomcat as a
 Service by clicking on service.bat.
 
  Any idea on why i am in need of this dll here..
 
 warm regards
 karthick
 
 __
 ___
 The amazing world in sharp snaps
 http://news.in.msn.com/gallery/archive.aspx

I just install all the current VS (2005 sp1 to 2010) redistributables (both
x86 and x64) to solve any missing DLLs problems in Windows.  As for need for
DLL by Tomcat, I think it's the way the EXE was compiled (dynamically
linked).

Regards,
Tommy


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-08 Thread Mladen Turk

On 05/08/2010 11:32 AM, Tommy Pham wrote:

-Original Message-


I just install all the current VS (2005 sp1 to 2010) redistributables (both
x86 and x64) to solve any missing DLLs problems in Windows.  As for need for
DLL by Tomcat, I think it's the way the EXE was compiled (dynamically
linked).



It has nothing to do with tomcat. The missing .dll is JVM dependency.
The copy can be avoided by setting up the system PATH to include
the JRE bin folder (usually reboot will be required)

It is something Sun refuses to handle and ships the msvcrt71.dll
as part of their dist instead to follow the Windows Logo
guidelines and install the MSVCRT runtime separately.


Regards
--
^TM

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-08 Thread Tommy Pham
 -Original Message-
 From: Mladen Turk [mailto:mt...@apache.org]
 Sent: Saturday, May 08, 2010 2:59 AM
 To: users@tomcat.apache.org
 Subject: Re: tomcat 6 (windows 7- 64 bits) doesn't start
 
 On 05/08/2010 11:32 AM, Tommy Pham wrote:
  -Original Message-
 
  I just install all the current VS (2005 sp1 to 2010) redistributables
  (both
  x86 and x64) to solve any missing DLLs problems in Windows.  As for
  need for DLL by Tomcat, I think it's the way the EXE was compiled
  (dynamically linked).
 
 
 It has nothing to do with tomcat. The missing .dll is JVM dependency.
 The copy can be avoided by setting up the system PATH to include the JRE
 bin folder (usually reboot will be required)
 
 It is something Sun refuses to handle and ships the msvcrt71.dll as part
of
 their dist instead to follow the Windows Logo guidelines and install the
 MSVCRT runtime separately.
 
 
 Regards
 --
 ^TM
 

Thanks for setting me straight.

Regards,
Tommy


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-07 Thread Christoph Kukulies

Am 06.05.2010 14:51, schrieb Caldarale, Charles R:

From: Christoph Kukulies [mailto:k...@kukulies.org]
Subject: Re: tomcat 6 (windows 7- 64 bits) doesn't start

I believe it's because I only have the jre, not the jdk and I'm
downloading at the moment.
 

No, Tomcat runs fine on a JRE.  The problem is that you have a 32-bit JVM 
installed in a 64-bit OS.  (The 32-bit Windows JVM has only the client DLL, the 
64-bit only the server DLL.)  The Tomcat installer program expects the JVM mode 
to match that of the OS.  Use a 64-bit JVM.

  - Chuck
   
Thanks. That's correct what you are saying. But this also means that 
whenever you're  asked to download the latest Java
from java.com (Sun/Oracle) with whatever Java app, e.g. OpenOffice or 
something, that infamous installer that
always installs the Yahoo toolbar in your browser when you don't untick 
that checkbox, you always get the 32bit version JVM

on windows.

I looked for a 64bit version on their download page to no avail.

--
Christoph Kukulies


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-07 Thread Tommy Pham
 -Original Message-
 From: Christoph Kukulies [mailto:k...@kukulies.org]
 Sent: Friday, May 07, 2010 12:21 AM
 To: Tomcat Users List
 Cc: Caldarale, Charles R
 Subject: Re: tomcat 6 (windows 7- 64 bits) doesn't start
 
 Am 06.05.2010 14:51, schrieb Caldarale, Charles R:
  From: Christoph Kukulies [mailto:k...@kukulies.org]
  Subject: Re: tomcat 6 (windows 7- 64 bits) doesn't start
 
  I believe it's because I only have the jre, not the jdk and I'm
  downloading at the moment.
 
  No, Tomcat runs fine on a JRE.  The problem is that you have a 32-bit
JVM
 installed in a 64-bit OS.  (The 32-bit Windows JVM has only the client
DLL, the
 64-bit only the server DLL.)  The Tomcat installer program expects the JVM
 mode to match that of the OS.  Use a 64-bit JVM.
 
- Chuck
 
 Thanks. That's correct what you are saying. But this also means that
 whenever you're  asked to download the latest Java from java.com
 (Sun/Oracle) with whatever Java app, e.g. OpenOffice or something, that
 infamous installer that always installs the Yahoo toolbar in your browser
 when you don't untick that checkbox, you always get the 32bit version JVM
 on windows.
 
 I looked for a 64bit version on their download page to no avail.
 
 --
 Christoph Kukulies
 
 

Christoph,

Try java.sun.com.  Specifically:
http://java.sun.com/javase/downloads/widget/jdk6.jsp

Regards,
Tommy


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-07 Thread Christoph Kukulies

Am 07.05.2010 09:42, schrieb Tommy Pham:

-Original Message-
From: Christoph Kukulies [mailto:k...@kukulies.org]
Sent: Friday, May 07, 2010 12:21 AM
To: Tomcat Users List
Cc: Caldarale, Charles R
Subject: Re: tomcat 6 (windows 7- 64 bits) doesn't start

Am 06.05.2010 14:51, schrieb Caldarale, Charles R:
 

From: Christoph Kukulies [mailto:k...@kukulies.org]
Subject: Re: tomcat 6 (windows 7- 64 bits) doesn't start

I believe it's because I only have the jre, not the jdk and I'm
downloading at the moment.

 

No, Tomcat runs fine on a JRE.  The problem is that you have a 32-bit
   

JVM
   

installed in a 64-bit OS.  (The 32-bit Windows JVM has only the client
 

DLL, the
   

64-bit only the server DLL.)  The Tomcat installer program expects the JVM
mode to match that of the OS.  Use a 64-bit JVM.
 

   - Chuck

   

Thanks. That's correct what you are saying. But this also means that
whenever you're  asked to download the latest Java from java.com
(Sun/Oracle) with whatever Java app, e.g. OpenOffice or something, that
infamous installer that always installs the Yahoo toolbar in your browser
when you don't untick that checkbox, you always get the 32bit version JVM
on windows.

I looked for a 64bit version on their download page to no avail.

--
Christoph Kukulies


 

Christoph,

Try java.sun.com.  Specifically:
http://java.sun.com/javase/downloads/widget/jdk6.jsp

Regards,
Tommy

   
Thanks, Tommy. Great link! And I even remembered my Sun account/password 
which is still in their databases since

13 years or so. :-)

--
Christoph




-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-07 Thread Karthick Ragunath

Yeah,,
 well Charles

 Windows 7 64 bit OS, when installing Tomcat, expects for 64This version of 
JVM's dll located at C:\Program Files\Java\jdk1.6.0_12\jre\bin\server\jvm.dll

 The problem now is that, i do not want to install Java twice (one 32-bit and 
other 64-bit) as how i have done it now.  Some other applications using Java 
requires 32bit always. (Eclipse requires 32 bit JVM which otherwise would 
result in JVM termination error during Eclipse startup). 

I have downloaded latest Tomcat windows Installable.

This same Tomcat installable, when installed in 32bit XP where 32bit JVM is 
installed, gets installed properly, but not with Windows 7 64 prof.

Is there an alternate solution for this. I would be happy to use the 32bit JVM 
. Not many applications are supported by 64 bit JVM.



with regards
karthick



 From: chuck.caldar...@unisys.com
 To: users@tomcat.apache.org
 Date: Thu, 6 May 2010 07:51:06 -0500
 Subject: RE: tomcat 6 (windows 7-  64 bits) doesn't start
 
  From: Christoph Kukulies [mailto:k...@kukulies.org]
  Subject: Re: tomcat 6 (windows 7- 64 bits) doesn't start
  
  I believe it's because I only have the jre, not the jdk and I'm
  downloading at the moment.
 
 No, Tomcat runs fine on a JRE.  The problem is that you have a 32-bit JVM 
 installed in a 64-bit OS.  (The 32-bit Windows JVM has only the client DLL, 
 the 64-bit only the server DLL.)  The Tomcat installer program expects the 
 JVM mode to match that of the OS.  Use a 64-bit JVM.
 
  - Chuck
 
 
 THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
 MATERIAL and is thus for use only by the intended recipient. If you received 
 this in error, please contact the sender and delete the e-mail and its 
 attachments from all computers.
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: users-h...@tomcat.apache.org
 
  
_
Catch the latest in the world of fashion
http://lifestyle.in.msn.com/

RE: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-07 Thread Tommy Pham
 -Original Message-
 From: Karthick Ragunath [mailto:karthick.ragun...@live.com]
 Sent: Friday, May 07, 2010 7:01 AM
 To: users@tomcat.apache.org
 Subject: RE: tomcat 6 (windows 7- 64 bits) doesn't start
 
 
 Yeah,,
  well Charles
 
  Windows 7 64 bit OS, when installing Tomcat, expects for 64This version
of
 JVM's dll located at C:\Program
 Files\Java\jdk1.6.0_12\jre\bin\server\jvm.dll
 
  The problem now is that, i do not want to install Java twice (one 32-bit
and
 other 64-bit) as how i have done it now.  Some other applications using
Java
 requires 32bit always. (Eclipse requires 32 bit JVM which otherwise would
 result in JVM termination error during Eclipse startup).
 
 I have downloaded latest Tomcat windows Installable.
 
 This same Tomcat installable, when installed in 32bit XP where 32bit JVM
is
 installed, gets installed properly, but not with Windows 7 64 prof.
 
 Is there an alternate solution for this. I would be happy to use the 32bit
JVM .
 Not many applications are supported by 64 bit JVM.
 
 
 
 with regards
 karthick
 

Karthick,

You can run Tomcat with 32 bit JVM on 64 bit Windows.  Uninstall the current
Tomcat service you have.  Set the JAVA_HOME environment in the System
Variables to the proper location and reboot.  Download Tomcat, the 32 bit
version of Windows zip file, and install the service via the batch file.
 
Regards,
Tommy

 
  From: chuck.caldar...@unisys.com
  To: users@tomcat.apache.org
  Date: Thu, 6 May 2010 07:51:06 -0500
  Subject: RE: tomcat 6 (windows 7-  64 bits) doesn't start
 
   From: Christoph Kukulies [mailto:k...@kukulies.org]
   Subject: Re: tomcat 6 (windows 7- 64 bits) doesn't start
  
   I believe it's because I only have the jre, not the jdk and I'm
   downloading at the moment.
 
  No, Tomcat runs fine on a JRE.  The problem is that you have a 32-bit
JVM
 installed in a 64-bit OS.  (The 32-bit Windows JVM has only the client
DLL, the
 64-bit only the server DLL.)  The Tomcat installer program expects the JVM
 mode to match that of the OS.  Use a 64-bit JVM.
 
   - Chuck
 
 
  THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR
 OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended
 recipient. If you received this in error, please contact the sender and
delete
 the e-mail and its attachments from all computers.
 
 
  -
  To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
  For additional commands, e-mail: users-h...@tomcat.apache.org
 
 
 __
 ___
 Catch the latest in the world of fashion http://lifestyle.in.msn.com/


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-06 Thread Pid
On 06/05/2010 10:44, Christoph Kukulies wrote:
 Tomcat 6.0.26 doesn't start. I used the 64bit installer under Windows 7.
 
 jakarta_service_log:
 
 [2010-05-06 11:41:44] [info] Commons Daemon procrun (1.0.2.0) started
 [2010-05-06 11:41:44] [info] Running Service...
 [2010-05-06 11:41:44] [info] Starting service...
 [2010-05-06 11:41:44] [206  javajni.c] [error] %1 ist keine zulässige
 Win32-Anwendung.
 [2010-05-06 11:41:44] [985  prunsrv.c] [error] Failed creating java
 C:\Program Files (x86)\Java\jre6\bin\client\jvm.dll
 [2010-05-06 11:41:44] [1280 prunsrv.c] [error] ServiceStart returned 1
 [2010-05-06 11:41:44] [info] Run service finished.
 [2010-05-06 11:41:44] [info] Commons Daemon procrun finished.

It's looking for a client JVM, which you probably don't want.

Find the path to bin\server\jvm.dll.

Start tomcat6w.exe and go to the Java tab, put the path to the correct
jvm.dll in the appropriate location.


p

 -- 
 Christoph
 
 
 
 
 
 
 -
 To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
 For additional commands, e-mail: users-h...@tomcat.apache.org
 




signature.asc
Description: OpenPGP digital signature


Re: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-06 Thread Christoph Kukulies

Am 06.05.2010 12:07, schrieb Pid:

On 06/05/2010 10:44, Christoph Kukulies wrote:
   

Tomcat 6.0.26 doesn't start. I used the 64bit installer under Windows 7.

jakarta_service_log:

[2010-05-06 11:41:44] [info] Commons Daemon procrun (1.0.2.0) started
[2010-05-06 11:41:44] [info] Running Service...
[2010-05-06 11:41:44] [info] Starting service...
[2010-05-06 11:41:44] [206  javajni.c] [error] %1 ist keine zulässige
Win32-Anwendung.
[2010-05-06 11:41:44] [985  prunsrv.c] [error] Failed creating java
C:\Program Files (x86)\Java\jre6\bin\client\jvm.dll
[2010-05-06 11:41:44] [1280 prunsrv.c] [error] ServiceStart returned 1
[2010-05-06 11:41:44] [info] Run service finished.
[2010-05-06 11:41:44] [info] Commons Daemon procrun finished.
 

It's looking for a client JVM, which you probably don't want.

Find the path to bin\server\jvm.dll.

Start tomcat6w.exe and go to the Java tab, put the path to the correct
jvm.dll in the appropriate location.


p

   

--
Christoph
 
I reinstalled jre6 (why does it install into c:\program 
files\java\jre6\.. and not \Program Files or \Programme)

I always thought \program files (x86) was for 32bit apps or am I wrong?

Anyway there is no \server\jvm.dll all over the system being installed 
AFAICS.


--
Christoph


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-06 Thread Christoph Kukulies

Am 06.05.2010 12:07, schrieb Pid:

On 06/05/2010 10:44, Christoph Kukulies wrote:
   

Tomcat 6.0.26 doesn't start. I used the 64bit installer under Windows 7.

jakarta_service_log:

[2010-05-06 11:41:44] [info] Commons Daemon procrun (1.0.2.0) started
[2010-05-06 11:41:44] [info] Running Service...
[2010-05-06 11:41:44] [info] Starting service...
[2010-05-06 11:41:44] [206  javajni.c] [error] %1 ist keine zulässige
Win32-Anwendung.
[2010-05-06 11:41:44] [985  prunsrv.c] [error] Failed creating java
C:\Program Files (x86)\Java\jre6\bin\client\jvm.dll
[2010-05-06 11:41:44] [1280 prunsrv.c] [error] ServiceStart returned 1
[2010-05-06 11:41:44] [info] Run service finished.
[2010-05-06 11:41:44] [info] Commons Daemon procrun finished.
 

It's looking for a client JVM, which you probably don't want.

Find the path to bin\server\jvm.dll.

Start tomcat6w.exe and go to the Java tab, put the path to the correct
jvm.dll in the appropriate location.


p

   
I believe it's because I only have the jre, not the jdk and I'm 
downloading at the moment.


--
Christoph


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-06 Thread André Warnier

Christoph Kukulies wrote:

Am 06.05.2010 12:07, schrieb Pid:

On 06/05/2010 10:44, Christoph Kukulies wrote:
  

Tomcat 6.0.26 doesn't start. I used the 64bit installer under Windows 7.

jakarta_service_log:

[2010-05-06 11:41:44] [info] Commons Daemon procrun (1.0.2.0) started
[2010-05-06 11:41:44] [info] Running Service...
[2010-05-06 11:41:44] [info] Starting service...
[2010-05-06 11:41:44] [206  javajni.c] [error] %1 ist keine zulässige
Win32-Anwendung.
[2010-05-06 11:41:44] [985  prunsrv.c] [error] Failed creating java
C:\Program Files (x86)\Java\jre6\bin\client\jvm.dll
[2010-05-06 11:41:44] [1280 prunsrv.c] [error] ServiceStart returned 1
[2010-05-06 11:41:44] [info] Run service finished.
[2010-05-06 11:41:44] [info] Commons Daemon procrun finished.
 

It's looking for a client JVM, which you probably don't want.

Find the path to bin\server\jvm.dll.

Start tomcat6w.exe and go to the Java tab, put the path to the correct
jvm.dll in the appropriate location.


p

   
I believe it's because I only have the jre, not the jdk and I'm 
downloading at the moment.


I think the problem is that you have a mismatch between the 
tomcat6.exe (which is really procrun.exe, renamed), and the JVM, in 
terms of which is 32/64 bit.


The installer probably picks the appropriate 32 or 64-bit version of 
tomcat6.exe to install, but it does not select the JVM.
The path to the JVM that tomcat6.exe will use, is in the Windows 
Registry.  The tomcat6w.exe program is a GUI which can changes these 
Registry settings, that will be used when you run tomcat6.exe.


In other words, you have installed a 64-bit tomcat6.exe, but when it 
looks for which jvm.dll to start, it finds a 32-bit JVM.
Run tomcat6w.exe, navigate to the tab that points to the JVM to use, and 
make sure it points to a 64-bit one.

Then re-run tomcat6.exe (or the Tomcat Service).



-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-06 Thread Christoph Kukulies

Am 06.05.2010 12:26, schrieb Christoph Kukulies:

Am 06.05.2010 12:07, schrieb Pid:

On 06/05/2010 10:44, Christoph Kukulies wrote:
Tomcat 6.0.26 doesn't start. I used the 64bit installer under 
Windows 7.


jakarta_service_log:

[2010-05-06 11:41:44] [info] Commons Daemon procrun (1.0.2.0) started
[2010-05-06 11:41:44] [info] Running Service...
[2010-05-06 11:41:44] [info] Starting service...
[2010-05-06 11:41:44] [206  javajni.c] [error] %1 ist keine zulässige
Win32-Anwendung.
[2010-05-06 11:41:44] [985  prunsrv.c] [error] Failed creating java
C:\Program Files (x86)\Java\jre6\bin\client\jvm.dll
[2010-05-06 11:41:44] [1280 prunsrv.c] [error] ServiceStart returned 1
[2010-05-06 11:41:44] [info] Run service finished.
[2010-05-06 11:41:44] [info] Commons Daemon procrun finished.

It's looking for a client JVM, which you probably don't want.

Find the path to bin\server\jvm.dll.

Start tomcat6w.exe and go to the Java tab, put the path to the correct
jvm.dll in the appropriate location.


p

I believe it's because I only have the jre, not the jdk and I'm 
downloading at the moment.


--
Christoph


It's running now :)
[2010-05-06 12:19:25] [info] Commons Daemon procrun finished.
[2010-05-06 12:32:43] [info] Commons Daemon procrun (1.0.2.0) started
[2010-05-06 12:32:43] [info] Running Service...
[2010-05-06 12:32:43] [info] Starting service...
[2010-05-06 12:32:44] [info] Service started in 1154 ms.

C:\Programme\Apache_Group\Tomcat 6.0.26\logs

--
Christoph


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat 6 (windows 7- 64 bits) doesn't start

2010-05-06 Thread Caldarale, Charles R
 From: Christoph Kukulies [mailto:k...@kukulies.org]
 Subject: Re: tomcat 6 (windows 7- 64 bits) doesn't start
 
 I believe it's because I only have the jre, not the jdk and I'm
 downloading at the moment.

No, Tomcat runs fine on a JRE.  The problem is that you have a 32-bit JVM 
installed in a 64-bit OS.  (The 32-bit Windows JVM has only the client DLL, the 
64-bit only the server DLL.)  The Tomcat installer program expects the JVM mode 
to match that of the OS.  Use a 64-bit JVM.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY 
MATERIAL and is thus for use only by the intended recipient. If you received 
this in error, please contact the sender and delete the e-mail and its 
attachments from all computers.


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org