简体   繁体   English

内部错误。 java.lang.RuntimeException:com.intellij.ide.plugins.PluginManager $ StartupAbortedException:致命错误初始化

[英]Internal error. java.lang.RuntimeException: com.intellij.ide.plugins.PluginManager$StartupAbortedException: Fatal error initializing

I find many solution but no one work then i uninstall android studio and download the lastest version and again install but i get this error again. 我找到了很多解决方案,但没有人可以解决,然后我卸载了android studio,下载了最新版本,然后再次安装,但我再次收到此错误。 Please tell me the solution of this problem. 请告诉我这个问题的解决方案。 Error in android studio Android Studio中的错误

Solved this problem. 解决了这个问题。

I empty the plugins at the directory of C:\\Users....AndroidStudio\\config\\plugins and it work normally. 我清空C:\\ Users .... AndroidStudio \\ config \\ plugins目录中的插件,它可以正常工作。

My problem for this on Linux was file permissions as I changed the default ones after extracting the archive. 我在Linux上的问题是文件权限,因为在提取存档后更改了默认权限。 The default permissions are rwx------ for all files and directories. 所有文件和目录的默认权限为rwx------ I changed it to rw-r--r-- (644) for all files and rwxr-xrx (755) for directories. 对于所有文件,我将其更改为rw-r--r-- (644),对于目录,将其更改为rwxr-xrx (755)。 This is where I got this error. 这是我收到此错误的地方。 The fix for me was making *.sh and *.so files executable. 对我来说,解决方法是使*.sh*.so文件可执行。 So 所以

cd /path/to/IntelliJ
find . -type f -name *.sh -exec chmod 755 '{}' ';'
find . -type f -name *.so -exec chmod 755 '{}' ';'
cd bin
./idea.sh

Works fine for me now. 现在适合我。

Edit: Actually there was 1 extra step. 编辑:实际上有1个额外的步骤。 The binary files inside of the JRE folder need to be executable as well. JRE文件夹中的二进制文件也必须是可执行的。

cd /path/to/IntelliJ
find jre64/bin/ -type f -exec chmod 755 '{}' ';'

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何修复错误无法加载项目:com.intellij.ide.plugins.PluginManager$StartupAbortedException:初始化插件代码虹膜的致命错误 - How to fix error Cannot load project: com.intellij.ide.plugins.PluginManager$StartupAbortedException: Fatal error initializing plugin Code Iris Android Studio开始失败 - ClassNotFoundException:com.intellij.ide.plugins.PluginManager - Android Studio Start Failed - ClassNotFoundException: com.intellij.ide.plugins.PluginManager java.lang.RuntimeException:Firestore 中的内部错误 (0.6.6-dev) - java.lang.RuntimeException: Internal error in Firestore (0.6.6-dev) AndroidStudio - 错误 - llij.ide.plugins.PluginManager - java.lang.NullPointerException - AndroidStudio - ERROR - llij.ide.plugins.PluginManager - java.lang.NullPointerException 致命异常:AsyncTask#1:java.lang.RuntimeException:执行doInBackground()时发生错误 - FATAL EXCEPTION: AsyncTask #1 : java.lang.RuntimeException: An error occured while executing doInBackground() java.lang.NoSuchMethodError: com.intellij.ide.plugins.PluginManagerCore.loadDescriptors()[Lcom/intellij/ide/plugins/IdeaPluginDescriptorImpl; - java.lang.NoSuchMethodError: com.intellij.ide.plugins.PluginManagerCore.loadDescriptors()[Lcom/intellij/ide/plugins/IdeaPluginDescriptorImpl; java.lang.RuntimeException: 执行 doInBackground() 时出错 Kotlin - java.lang.RuntimeException: An error occured while executing doInBackground() Kotlin 收到错误java.lang.RuntimeException:无法启动活动ComponentInfo - Getting error java.lang.RuntimeException: Unable to start activity ComponentInfo 致命异常:java.lang.RuntimeException:无法启动活动ComponentInfo? - FATAL EXCEPTION: java.lang.RuntimeException: Unable to start activity ComponentInfo? AndroidRuntime:致命异常:主要由:java.lang.RuntimeException引起 - AndroidRuntime: FATAL EXCEPTION: main Caused by: java.lang.RuntimeException
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM