Issue
I understand that this question may have been asked before and have gone through them but I am still stuck on the same JVM Exited. Error Code 13
while trying to launch
eclipse on Ubuntu by directly specifying path to Java -
./eclipse -vm /usr/lib/jvm/java-11-openjdk-amd64/bin/java
Java
Eclispe Error
Error Log:
!SESSION Tue Jun 15 23:00:33 IST 2021 ------------------------------------------
!ENTRY org.eclipse.equinox.launcher 4 0 2021-06-15 23:00:33.052
!MESSAGE Exception launching the Eclipse Platform:
!STACK
java.io.FileNotFoundException: Could not find framework under /home/sandeep/Documents/plugins
at org.eclipse.equinox.launcher.Main.getBootPath(Main.java:975)
at org.eclipse.equinox.launcher.Main.basicRun(Main.java:570)
at org.eclipse.equinox.launcher.Main.run(Main.java:1461)
at org.eclipse.equinox.launcher.Main.main(Main.java:1434)
I have tried multiple Java distributions(8/11/15) - giving same Exit Code 13. I am not sure what exactly is missing here.
Solution
This seems to be caused by Eclipse bug 568604.
#
characters in the install path are confusing Eclipse and causing it to look in the wrong place.
So install Eclipse in a location without #
in the path.
Answered By - greg-449