Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable to run IntelliJ IDEA CE 12 with Ubuntu Oracle Java 8

I am using Ubuntu 13.04 and Oracle Java 8.

I have set the JAVA_HOME and PATH variables.

Here is the terminal output of trying to run IntelliJ:

darren@ubuntu:~$ /opt/intellij-idea-ce/bin/idea.sh
Java HotSpot(TM) 64-Bit Server VM (build 25.0-b42, mixed mode)
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=350m; support was removed in 8.0
Failed to clear URL cache
java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:491)
    at com.intellij.ide.plugins.PluginManager$2.run(PluginManager.java:190)
    at java.lang.Thread.run(Thread.java:724)
Caused by: java.lang.NoSuchMethodError: sun.reflect.Reflection.getCallerClass(I)Ljava/lang/Class;
    at com.intellij.openapi.util.IconLoader.getIcon(IconLoader.java:116)
    at com.intellij.openapi.application.impl.ApplicationInfoImpl.readExternal(ApplicationInfoImpl.java:491)
    at com.intellij.openapi.application.impl.ApplicationInfoImpl.getShadowInstance(ApplicationInfoImpl.java:426)
    at com.intellij.ui.AppUIUtil.getAppIconImages(AppUIUtil.java:66)
    at com.intellij.ui.AppUIUtil.updateWindowIcon(AppUIUtil.java:49)
    at com.intellij.idea.MainImpl.start(MainImpl.java:46)
    ... 6 more
ERROR: Error while accessing com.intellij.idea.MainImpl.start with arguments: []
java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:491)
    at com.intellij.ide.plugins.PluginManager$2.run(PluginManager.java:190)
    at java.lang.Thread.run(Thread.java:724)
Caused by: java.lang.NoSuchMethodError: sun.reflect.Reflection.getCallerClass(I)Ljava/lang/Class;
    at com.intellij.openapi.util.IconLoader.getIcon(IconLoader.java:116)
    at com.intellij.openapi.application.impl.ApplicationInfoImpl.readExternal(ApplicationInfoImpl.java:491)
    at com.intellij.openapi.application.impl.ApplicationInfoImpl.getShadowInstance(ApplicationInfoImpl.java:426)
    at com.intellij.ui.AppUIUtil.getAppIconImages(AppUIUtil.java:66)
    at com.intellij.ui.AppUIUtil.updateWindowIcon(AppUIUtil.java:49)
    at com.intellij.idea.MainImpl.start(MainImpl.java:46)
    ... 6 more
ERROR: Error while accessing com.intellij.idea.MainImpl.start with arguments: []
java.lang.AssertionError: Error while accessing com.intellij.idea.MainImpl.start with arguments: []
    at com.intellij.openapi.diagnostic.DefaultLogger.error(DefaultLogger.java:55)
    at com.intellij.openapi.diagnostic.Logger.error(Logger.java:65)
    at com.intellij.ide.plugins.PluginManager$2.run(PluginManager.java:194)
    at java.lang.Thread.run(Thread.java:724)

Exception: java.lang.AssertionError thrown from the UncaughtExceptionHandler in thread "Idea Main Thread 12.1#IC-129.161, eap:false"
like image 587
Ramus Avatar asked Dec 16 '22 07:12

Ramus


1 Answers

You may already have one instance of IDEA running. Go ahead and check:

$ ps -ef | grep idea

Use kill or kill -9 to stop that instance then try restarting it.

like image 192
Cory Klein Avatar answered Dec 17 '22 22:12

Cory Klein