Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am getting when I start Eclipse Helios on Windows 7.

Failed to create the Java Virtual Machine

enter image description here

My eclipse.ini looks as follows:

-startup
plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar
-vm
P:\Programs\jdk1.6\bin
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.0.v20100503
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
-vmargs
-Dosgi.requiredJavaVersion=1.5
-Xms120m
-Xmn100m
-Xmx1024m

My JAVA_HOME is correctly set as far as I can tell. Any ideas on how to fix this would be really appreciated

Things I have tried so far:

  1. Adding the full path to javaw.exe -vm P:\Programs\jdk1.6\bin\\bin\javaw.exe
  2. removing the -vm option all together
  3. removing --launcher.XXMaxPermSize fixes the issue but causes permgen errors
  4. removing the value 512 of --launcher.XXMaxPermSize fixes the issue but causes permgen errors
  5. reducing -Xmx to 512m also fixes the issue.

Why can i not use '1024m' for '-Xmx' and '--launcher.XXMaxPermSize'

share|improve this question
6  
It means jvm can't allocate the required memory space(1024+512) in your computer. – Kane Sep 5 '11 at 2:39
So just to confirm I understand this correctly. The JVM will allocate the amount of memory specified by (XXMaxPermSize + Xmx) – Maro Sep 5 '11 at 2:57
1  
It doesn't immediately create the memory with maximum heap size(specified by -Xmx) when starting vm. But it would make sure it has capability to create the maximum heap size in runtime when starting vm. If not, the vm can't be created. – Kane Sep 5 '11 at 5:05
I have no idea why, but on my machine Eclipse only has this problem when Dragon NaturallySpeaking is running. RonQi's solution worked for me. – rob Jul 17 '12 at 5:20
@rob: That's probably because Dragon uses a lot of memory. The cause for this issue seems to be that the JVM cannot allocate enough memory. – Stijn de Witt Feb 18 at 14:14

12 Answers

up vote 11 down vote accepted

Try removing the -vm P:\Programs\jdk1.6\bin lines.


Also, a general recommendation: set -Dosgi.requiredJavaVersion=1.6, not 1.5.

share|improve this answer
I have tried that but the issue still persists – Maro Sep 4 '11 at 22:54

Try to add

-vm
D:\Java\jdk1.6.0_29\bin\javaw.exe

FYI: Refer sunblog

For others who might have problems with Java 7, as per Eclipse Wiki - eclipse.ini vm_value (windows example)

This might not work on all systems. If you encounter "Java was started but returned exit code=1" error while starting the eclipse, modify the -vm argument to point to jvm.dll

e.g.

-vm
C:\Program Files\Java\jre7\bin\client\jvm.dll

Also note that

The -vm option must occur before the -vmargs option, since everything after -vmargs is passed directly to the JVM

share|improve this answer
Thanks. It worked for me. – Mady Jan 30 '12 at 13:19
+1 for this.It also worked for me also.Thanks – Shashank_Itmaster Feb 10 '12 at 3:31
Worked for me too – Coder323 Mar 5 '12 at 4:46
Worked like a charm, thanks. – Мitke Mar 24 '12 at 19:23
1  
+1 I was missing the ordering part. All the other places on the net they talk about the -vm argument but they neglect to say it must occur before -vmargs – demongolem May 5 at 2:39
show 7 more comments

1. Open the eclipse.ini file from your eclipse folder.

2. It has some of add on configuration . Find the line -Xmx256m. Now remove the the default value 256m or 1024m to 512m and also need to give the exact java installed version 1.6 or 1.7 or other.

Like This:

-Xmx512m
-Dosgi.requiredJavaVersion=1.6

OR

-Xmx512m
-Dosgi.requiredJavaVersion=1.7

and it works well for me

share|improve this answer
3  
Wow, I changed -Xmx1024m to -Xmx512m and it worked! – lomza Feb 11 at 9:17
This will only work if the problem was not enough memory and if you lower the values in eclipse.ini. Raising them will only make this issue more probable to occur. – Stijn de Witt Feb 18 at 14:17
1  
Thanks yar, I increased this value and it worked fine, I think it happened because I updated JDK. – Pervez Alam Apr 30 at 9:02
also check jdk in your system .above work fine for me. – Hemant Vc May 1 at 12:56

I know this is pretty old now but I have just had the same issue and the problem was I was allocating to much memory to eclipse that it could not get hold of. So open eclipse.ini and lower the amount of memory that is being allocated to -Xmx XXMaxPermSize I changed mine to -Xmx512m and XXMaxPermSize256m

share|improve this answer
Is this on a 32bit machine? Cause I believe there is a limit on the how much memory you can use on 32bit windows – Maro Sep 16 '12 at 22:52
@Maro Yes it was. Looking at getting upgraded to 64bit. – Popeye Sep 17 '12 at 19:10
It worked for me :-) Thanks alot – Exception Feb 5 at 4:45
Worked for me, replaced 768m with 512m on -Xmx parameter. – tartak Feb 16 at 9:41
I am on a 64-bit machine with 8GB of memory but still using -Xmx=768m in combination with -XX:PermSize=256m and -XX:MaxPermSize=512m proved to be too much. It is a 32 bit Java so it can 'only' use 4GB, but the max seems to be much lower in practice. I would expect this to need 1024m to start and 1280m max... – Stijn de Witt Feb 18 at 14:21
  1. Open the eclipse.ini file from your eclipse folder.

  2. It has some of add on configuration . Find the line –launcher.XXMaxPermSize. Now remove the the default value 256m and save it.

share|improve this answer
I just reduced it to 128m and it worked. – Dale Sep 21 '12 at 0:45
It worked! Thanks – Marci Căşvan May 13 at 7:24
Thanks @MarciCăşvan :) – Furqi May 13 at 7:51

You can also solve this issue by removing the value "256m" under the line "-launcher.XXMaxPermSize”.

share|improve this answer
Worked for me. Though even with that value there, it used to work just fine after Windows Log Off and then Log In. – AMAR Apr 19 at 5:51

After trying the above solution of reducing the memory, Eclipse starts working but hangs every time while loading the plugins from the work-space specially at org.eclipse.debug.core.

I found the solution here, Eclipse hangs at Splash Screen, and want share it. Hopefully it can help others as well.

share|improve this answer
unlike anything else I tried in the last hour, THIS worked, thanks ! – Justin T. Dec 13 '12 at 10:05
Good link, +1 .. – Stijn de Witt Feb 18 at 14:23

In STS.conf file you need to check two important things to avoid create/allocate jvm issue

1. Give the exact jdk install location:

--vm C:\Program Files\Java\jdk1.7.0_01\jre\bin\javaw.exe

2. You need to give the exact java installed version:

--Dosgi.requiredJavaVersion=1.7

3. Try to reduce the memory size:

--XX:MaxPermSize=256m
share|improve this answer
MaxPermSize was my problem. – Dale Sep 21 '12 at 0:44

Try this one:

-startup plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar 
--launcher.library plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.2.R36x_v20101222 
-showsplash org.eclipse.platform 
--launcher.XXMaxPermSize 256m 
--launcher.defaultAction openFile 
-vm F:\Program Files\jdk1.6\bin\javaw.exe 
-vmargs 
-Xms512m 
-Xmx512m 
-XX:+UseParallelGC 
-XX:PermSize=256M 
-XX:MaxPermSize=512M
share|improve this answer

I was facing same problem I found the solution, There are issues in allocation of MaxPermSize If you try to allocating more size than your machine have free size than gives this error in my issue. So try to reduce MaxPermSize.

I think it will help you to sort out your issue

share|improve this answer

Adding this fixed the issue for me

-vm

D:\Java\jdk1.6.0_29\bin\javaw.exe

share|improve this answer

All these solutions failed me. This happened to me out of the blue after using the Eclipse for 6 months. It seems somehow my JDK got corrupted

My eventual solution was to download a newer JDK from and update my JAVA_HOME accordingly. from jdk1.6.0_37 to jdk1.6.0_43 in my case

share|improve this answer

protected by Robert Harvey Feb 1 at 15:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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