Skip to content
Advertisement

OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=350m;

When I’mtrying to open Intellij IDE using command line in linux like this ./phpstorm.sh both android studio and PHPStorm I always got this message :

OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=350m; support was removed in 8.0

and I was wondering if google find solution here but I was kinda lost here since I’m newbie in ubuntu 14.04. my question is what is the cause of this message to diplay? and how to resolve this?

I’ve tried using this command export MAVEN_OPTS="-Xmx512m" but it’s not resolve the issue. and I’m using java 1.8.0_73 downloaded from here. any useful help would be appreciated, thank you.

Advertisement

Answer

This is only a warning saying the option has been ignored – so it should not cause any issues.

The JVM options should be located in {IntelliJ folder}/bin/idea64.exe.vmoptions (on windows – probably something similar on linux). You can edit that file and delete the maxpermsize option.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement