|
|
|
|
|
|
|
|
|
Re: Constant "PermGen space" crashes in Helios: what is this? [message #546369 is a reply to message #546367] |
Mon, 12 July 2010 14:59 |
|
No Real Name wrote on Mon, 12 July 2010 16:55 | Yes, with
-vm
<path>JDK 1.6.0_20 and
also updated the three space parms from 256K to 512K
|
You want tell 512m? if not, that is the reason
Otherwise, double-check that you have your eclipse.ini with no errors.
Aurélien Pupier - Red Hat
Senior Software Engineer in Fuse Tooling team
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Re: Constant "PermGen space" crashes in Helios: what is this? [message #643794 is a reply to message #643793] |
Wed, 08 December 2010 10:11 |
Iain Messages: 6 Registered: December 2010 |
Junior Member |
|
|
Sorry, I posted the wrong version. I am running :
java version "1.6.0_22"
Java(TM) SE Runtime Environment (build 1.6.0_22-b04)
Java HotSpot(TM) Client VM (build 17.1-b03, mixed mode, sharing)
However the error still occurs. As soon as I starting running Birt reports I get the following error (or similar):
SEVERE: Error processing request
java.lang.OutOfMemoryError: PermGen space
[Updated on: Wed, 08 December 2010 10:28] Report message to a moderator
|
|
|
|
|
|
|
Re: Constant "PermGen space" crashes in Helios: what is this? [message #674191 is a reply to message #674190] |
Thu, 26 May 2011 04:54 |
LD Messages: 28 Registered: March 2011 |
Junior Member |
|
|
Hi, well for a reason I still don't know. The parameters given to the eclipse.ini are not taken. So I'm using java commands directly to execute the eclipse with the specific parameters.
Here is a solution that at least interrupt the constant crashing of eclipse.
Command format: java [ options ] -jar file.jar [ argument ... ]
Examples:
java -XX:PermSize=64M -XX:MaxPermSize=256M -Xms512M -Xmx1024M -jar <ECLIPSE_HOME>/plugins/org.eclipse.equinox.launcher_1.0.200.v20090520.jar (for eclipse 3.5.x)
java -XX:PermSize=64M -XX:MaxPermSize=256M -Xms512M -Xmx1024M -jar <ECLIPSE_HOME>/plugins/org.eclipse.equinox.launcher_1.1.1.R36x_v20101122_1400.jar (for eclipse 3.6.x)
Best Regards,
[Updated on: Thu, 26 May 2011 04:56] Report message to a moderator
|
|
|
|