Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Fixing Aion Java Heap Space Error

Newbie Spellweaver
Joined
Jul 11, 2008
Messages
53
Reaction score
5
So, hello everybody. this is my first post of fix which isnt something special. And yes Mod if i posted in wrong section pls tell me where to post these kind of things.
So Error Which occured during my Aion server update doesnt involve ur server settings or etc. It involves ur ram free space which is cached, so java JDK VM max limits is about 1,5 GB ram he will be able to start java VM(virtual machine) if ur ram doesnt excide over 1,5 GB RAM.And if its over this value it wont launch ur Aion server in this case.See picture under.

So fix for this problem is to open ur gameserver bat file and edit this line. java -Xms512m -Xmx1536m-ea. The first value is good, second value should change to 512m, even im not sure how to edit perfect settings and maybe changing this settings will slow down ur server performance later on. But atleast u can run ur server and u will know why that error accured. I sugest experimentate with both values. To see in which config server runs faster or smoother.I puted like this values and my problem got solved: java -Xms256m -Xmx512m -ea. And sry for long text. And a lot of mistakes in grammer :) :thumbup1:
 
Last edited:
Custom Title Activated
Loyal Member
Joined
Sep 10, 2006
Messages
5,265
Reaction score
47
i have 3.5 GB RAM and i still get that error, however you need to edit other .bat file in GS/dist folder, else when you recompile GS the old .bat will come back :)
 
Newbie Spellweaver
Joined
Jul 11, 2008
Messages
53
Reaction score
5
i have 3.5 GB RAM and i still get that error, however you need to edit other .bat file in GS/dist folder, else when you recompile GS the old .bat will come back :)
What do u mean by old bat will come back?

error accure because that setting goes over 1.5 gb.
and u need change those values so they dont excide 1500mb.
And i have 4 GB ram.
 
Last edited:
Custom Title Activated
Loyal Member
Joined
Sep 10, 2006
Messages
5,265
Reaction score
47
What do u mean by old bat will come back?

error accure because that setting goes over 1.5 gb.
and u need change those values so they dont excide 1500mb.
And i have 4 GB ram.

i mean that you don't need to edit the .bat in build folder, but the one i said,
yes well i have 4 gb also but XP is limited to 3.5
 
Master Summoner
Loyal Member
Joined
Jan 11, 2007
Messages
574
Reaction score
10
i mean that you don't need to edit the .bat in build folder, but the one i said,
yes well i have 4 gb also but XP is limited to 3.5

That's because the x32/x86 version of java doesnt support more than 1.5GB of Ram.

It's also recommended that you run a x64 bits OS along with a x64 bits Java version to avoid these problems.
 
Back
Top