Jump to content
  • 0

Out of Memory ....???


PoRnosJH

Question

Hi all...i got a problem...i have only 3gb ram...and the 2-2,3 is the real useable....

So lets start...when im opening my server(.bats) no problems...when ppl starting to coming...some time after (30min -1hour)if i try to shutdown-restart the server ....the l2server.bat panel shows: error Out of Memory ..cannot create a new native thread...and more like this....and the server doesnt restarts or shutdown....if i dont do anything after 1-1.30 h from the begging the server crushes...i think is ramm problem so..i ll go to add 3-5gb ramm more..when i do this all will be fixed???or maybe isnt only ramm problem or something else???i want a developer to tell me how the saving system,ramm-server system works...and i have here the edit of my l2server.bat

[table][tr][td]@echo off

color 17

title L2Server

:start

echo Starting Server.

echo.

REM -------------------------------------

REM Default parameters for a basic server.

java -Djava.util.logging.manager=net.sf.l2j.util.L2LogManager -Xmx1024m -cp ./../libs/*;l2jserver.jar net.sf.l2j.gameserver.GameServer

REM If you have a big server and lots of memory, you could experiment for example with

REM java -server -Xmx1536m -Xms1024m -Xmn512m -XX:PermSize=256m -XX:SurvivorRatio=8 -Xnoclassgc -XX:+AggressiveOpts

REM If you are having troubles on server shutdown (saving data),

REM add this to startup paramethers: -Djava.util.logging.manager=net.sf.l2j.L2LogManager. Example:

REM java -Djava.util.logging.manager=net.sf.l2j.util.L2LogManager -Xmx1024m -cp ./../libs/*;l2jserver.jar net.sf.l2j.gameserver.GameServer

REM -------------------------------------

if ERRORLEVEL 2 goto restart

if ERRORLEVEL 1 goto error

goto end

:restart

echo.

echo L2Server: Administrator Restarting.

echo.

goto start

:error

echo.

echo L2Server: Server terminated abnormally.

echo.

:end

echo.

echo L2Server: Server terminated.

echo.

pause[/td][/tr][/table]

 

if anyone can help...anything he can.. tell me plz...ty..

Link to comment
Share on other sites

Recommended Posts

  • 0

dude i understand this...from now i ll not run my geodata...but...i didnt ask that...i ask how i raise my total memory(no max memory)...and if i have a reason to do that....also i asked what max memmory does...and if the server will  be better if i run my total memory on my max memory...ty for your time...

 

look

 

Xmx1024 thats a memory heap size declaration which means 1024MB memory allowed to use

 

Xmx is the maximum usable memory for the java vm(aka your server)

Xms is the initial memory(which needed for the boot up process)

 

to allow more memory you need to increase the Xmx value the maximum that 32bit OS can handle is 1536 64bit OS dont have such limit

 

you need to play around with this to find the good setup...

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...