IntelliJ IDEA didn't want to start this morning.
Got the following error when trying to start it from a shell:
Got the following error when trying to start it from a shell:
Error occurred during initialization of VMWhat happened is that IntelliJ IDEA loaded the JVM Options from the new custom vmoptions file in the config directory. On Windows:
Initial heap size set to a larger value than the maximum heap size
%APPDATA%\Roaming\JetBrains\IntelliJIdea2020.1\idea64.exe.vmoptionsOn macOs:
~/Library/Application Support/JetBrains/IntelliJIdea2020.1/idea.vmoptions
This file was not updated properly when I updated IntellIJ IDEA. It contained:
-Xms4gFixed the issue by editing this file:
-Xmx2048m
-Xms4gSource: https://intellij-support.jetbrains.com/hc/en-us/community/posts/360004701620-idea-vmoptions-not-used-by-default
-Xmx4g
Comments
Post a Comment