When I am trying to run tomcat using startup.bat I get the following error,

The JAVA_HOME environment variable is not defined correctly
This environment variable is needed to run this program
NB: JAVA_HOME should point to a JDK not a JRE

But then I try C:\>echo %java_home% and I get the following result

C:\Program Files\Java\jdk1.6.0_25\bin

I have even tried setting JAVA_HOME manually to system variable list, but this issue remains.

What can I do to solve it?

I am using Windows 7.


Update

After setting a new system variable named JAVA_HOME and setting its path to "C:\Program Files\Java\jdk1.6.0_25\bin\", I tried the start up script again and this time I get a new error.

D:\Work\apache-tomcat-6.0.35\bin>startup.bat
Files\Java\jdk1.6.0_25"" was unexpected at this time.

Any idea what this error means?

I even tried setting the path to "C:\Program Files\Java\jdk1.6.0_25\"(that is without bin) but same error occurs.

link|improve this question

Check if startup.bat is redefining that environment variable. Look for "SET JAVA_HOME ... " – Luciano Jan 13 at 23:39
@luciano no, there is no re-definition of JAVA_HOME. – iamcreasy Jan 13 at 23:44
are there any spaces in your JAVA_HOME? Also did you get your echo result correctly or is it just a copy/paste mistake? – Zenzen Jan 13 at 23:46
@zenzen yes, it was c/p mistake. I have updated the question as well. – iamcreasy Jan 13 at 23:56
feedback

4 Answers

up vote 1 down vote accepted

Try installing java somewhere else - in a directory without spaces. Set again the JAVA_HOME variable and try again. I remember Tomcat had some problems on Window XP with spaces if any variables it was using while starting contained spaces. Maybe it's similar with Windows 7.

I remember I had to change some lines in Tomcat java classes which were handling Tomcat startup.

@Edit: Luciano beat me to noticing it but you should also remove "bin" from JAVA_HOME

@Edit: I also remember that another fix (didn't test it myself, though) was to set JAVA_HOME to the shorthand version e.g. C:\Progra~1\Java\jdk1.6.0_25

link|improve this answer
If you see my updated question I think you have just hit it. Files\Java\jdk1.6.0_25 means its the last part of Program Files. So, I guess its white space issue. Is there any escape character that I can use in the path to solve this, without going to install/uninstall. – iamcreasy Jan 14 at 0:01
I think its a tomcat issue. What makes you think its related to windows? – iamcreasy Jan 14 at 0:05
Because it works on *NIX systems :) From what I remember there's a line in one of the java classes written by Tomcat guys which doesn't properly handle spaces, so yeah it kinda is a Tomcat issue but only on Windows systems, if I remember correctly. – Zenzen Jan 14 at 0:17
Problem solved I re installed on a different location without white space. This is very annoying when a high profile product has this type of messy issues. – iamcreasy Jan 14 at 8:03
Just to clarify to other users coming to this site, that the JDK can be perfectly installed on a path that contains white spaces and Tomcat runs just fine using it. – Luciano Jan 14 at 18:23
feedback

I think that your JAVA_HOME should point to *C:\Program Files\Java\jdk1.6.0_25* instead of *C:\Program Files\Java\jdk1.6.0_25\bin*. That is, without the bin folder.

UPDATE

That new error appears to me if I set the JAVA_HOME with the quotes, like you did. Are you using quotation marks? If so, remove them.

link|improve this answer
If you know its the right thing, then why would it make you think? :P – iamcreasy Jan 14 at 0:02
I find it more politely to say it that way. – Luciano Jan 14 at 0:05
Apology. :) and thanks. – iamcreasy Jan 14 at 0:07
feedback

Avoid semicolon in the end of any environment variables... from JAVA_HOME or JRE_HOME

JAVA_HOME=C:\Program Files\Java\jdk1.6.0_25\bin

and

JRE_HOME=C:\Program Files\Java\jdk1.6.0_32\jre

should be like as shown...

link|improve this answer
feedback

{evil grin} I knew this would be helpful. Blogged about this last week.

If the step by step doesn't work let me know and I'll try and help you solve this problem.

link|improve this answer
1  
I don't understand. Its incomplete and the only thing it say to do is setting a new environment variable which is set inside the startup.bat. – iamcreasy Jan 13 at 23:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.