Eclipse crash with JVM error completed. Exit Code = 11

Eclipse crashes on Ubuntu 14.04 after throwing an error message below.

JVM terminated. Exit code=11
/usr/bin/java
-Xms128m
-Xmx2048m
-Dorg.eclipse.equinox.p2.reconciler.dropins.directory=/usr/share/eclipse/dropins
-XX:MaxPermSize=1024m
-jar /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.dist.jar
-os linux
-ws gtk
-arch x86_64
-showsplash /usr/lib/eclipse//plugins/org.eclipse.platform_3.8.1.dist/splash.bmp
-launcher /usr/lib/eclipse/eclipse
-name Eclipse
--launcher.library /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.dist/eclipse_1503.so
-startup /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.dist.jar
--launcher.overrideVmargs
-exitdata ea0009
-vm /usr/bin/java
-vmargs
-Xms128m
-Xmx2048m
-Dorg.eclipse.equinox.p2.reconciler.dropins.directory=/usr/share/eclipse/dropins
-XX:MaxPermSize=1024m
-jar /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher_1.3.0.dist.jar 

Eclipse Version: 3.8.1

eclipse.ini

-startup
plugins/org.eclipse.equinox.launcher_1.3.0.dist.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.dist
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
512m
--launcher.defaultAction
openFile
-vmargs
-Xms128m
-Xmx1024m
-Dorg.eclipse.equinox.p2.reconciler.dropins.directory=/usr/share/eclipse/dropins

workspace /.metadata/.log

!SESSION 2016-01-29 16:32:26.126 -----------------------------------------------
eclipse.buildId=debbuild
java.version=1.8.0_72
java.vendor=Oracle Corporation
BootLoader constants: OS=linux, ARCH=x86_64, WS=gtk, NL=en_IN
Command-line arguments:  -os linux -ws gtk -arch x86_64

!ENTRY org.eclipse.ui 2 2 2016-01-29 16:37:51.223
!MESSAGE Invalid property category path: ValidationPropertiesPage (bundle: org.eclipse.wst.xml.ui, propertyPage: org.eclipse.wst.xml.ui.propertyPage.project.validation)
!SESSION 2016-01-29 16:39:42.541 -----------------------------------------------
eclipse.buildId=debbuild
java.version=1.8.0_72
java.vendor=Oracle Corporation
BootLoader constants: OS=linux, ARCH=x86_64, WS=gtk, NL=en_IN
Command-line arguments:  -os linux -ws gtk -arch x86_64

!ENTRY org.eclipse.core.resources 2 10035 2016-01-29 16:39:44.621
!MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.

!ENTRY org.eclipse.ui 2 2 2016-01-29 16:42:30.180
!MESSAGE Invalid property category path: ValidationPropertiesPage (bundle: org.eclipse.wst.xml.ui, propertyPage: org.eclipse.wst.xml.ui.propertyPage.project.validation)

I am using oracle java version 1.8.0_72 as shown below.

java version "1.8.0_72"
Java(TM) SE Runtime Environment (build 1.8.0_72-b15)
Java HotSpot(TM) 64-Bit Server VM (build 25.72-b15, mixed mode)

I also tried with open jdk and the same problem came up.

Any solution or workaround to avoid this failure?

+4
source share
6 answers

From the comments, there is some problem with installing eclipse:

Download the latest form with the 64-bit eclipse form below: ECLIPSE DOWNLOADS

If after this you come across the same problem:

  • eclipse.ini eclipse.
  • JVM -vmargs

    -vm
    \ -JRE-\Bin\javaw.exe

+1

, - Eclipse, Ubuntu, Eclipse . JVM eclipse.ini, .

+1

webup8team java ppa. jdk/jre :

  • sudo add-apt-repository ppa: webupd8team/java
  • sudo apt-get
  • sudo apt-get install oracle-java8-installer
  • sudo apt-get install oracle-java8-set-default

, .

0
source

Add the jdk version to the eclipse.ini file,

-vm "Path_to_your_jvm"

0
source

from the default GTK section eclipse-inst.ini

Eclipse Installer
-data
@noDefault
--launcher.GTK_version
2

to

Eclipse Installer
-data
@noDefault
--launcher.GTK_version
3
0
source

Look in the Eclipse Log File

${location of the workspace}/.metadata/.log
-1
source

Source: https://habr.com/ru/post/1626484/


All Articles