Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error Launching Idea. Failed to load JVM DLL C:\Program Files\Java\jdk1.8.0_112

Whenever I open IntelliJ IDEA i get this error:

enter image description here

but I have that defined and I don't know why it wont work:

enter image description here

Any help accepted.

like image 521
thompsonturkey Avatar asked Oct 23 '16 14:10

thompsonturkey


People also ask

How do I fix JVM missing server?

To solve the 'missing server JVM' error, first check that there is indeed a JDK installed on the local operating system. If not, you need to install one. If there is one installed, you need to make sure SonarCube is defaulting to the utilities in the JDK's bin directory and not that of the JRE.

Where can I find JVM dll?

The file "jvm. dll" is in the folder "C:\Program Files\Java\jre1.

How can you install the JVM DLL file?

Method 1: Download Jvm.dll to PC from our site. Copy the file to the program install directory after where it is missing the DLL file. Or move the DLL file to the directory of your System (C:\Windows\System32, and for a 64 bit in C:\Windows\SysWOW64\). Now you need to reboot the computer.


2 Answers

It could be problem with 32 and 64 version. Maybe you trying to launch 32-bit shortcut on your Desktop. Try to launch 64 version (idea64.exe) inside IDEA folder. This worked for me.

like image 65
Alexander Gorbenko Avatar answered Sep 22 '22 05:09

Alexander Gorbenko


Change the following value from your Path system variable:

C:\Program Files (x86)\java\jdk1.8.0_112\jre\bin\server\jvm.dll 

to:

%JAVA_HOME%\bin 

Also make sure there are no any other references to Java folders in the Path variable.

like image 29
DimaSan Avatar answered Sep 24 '22 05:09

DimaSan