Page 1 of 1

System requirements

Posted: Sun Jan 15, 2012 2:22 pm
by Creck
Hi, I would like to ask you how many GBs of ram is recommended for live server with about 1000ppl ? and what about internet connection ?

Re: System requirements

Posted: Sun Jan 15, 2012 2:26 pm
by MELERIX
around 8gb ram (if you use it with geodata).

about internet... ofc a dedicated server with at least 100mb speed.

Re: System requirements

Posted: Sun Jan 22, 2012 2:21 pm
by darknessneo
about memory, i tryed to increase the ram, cuz since the last synchro of stable version, my free memory is arround 224 mo free / 910

Before, my memory was arround 400 mo free...

here is my .bat

Code: Select all

@echo offtitle Game Server Console:startecho Starting L2J Game Server.echo.REM -------------------------------------REM Default parameters for a basic server.java -Djava.util.logging.manager=com.l2jserver.util.L2LogManager -Xms1024m -Xmx1024m -cp ./../libs/*;l2jserver.jar com.l2jserver.gameserver.GameServerREMREM If you have a big server and lots of memory, you could experiment for example withREM java -server -Xmx1536m -Xms1024m -Xmn512m -XX:PermSize=256m -XX:SurvivorRatio=8 -Xnoclassgc -XX:+AggressiveOptsREM -------------------------------------if ERRORLEVEL 2 goto restartif ERRORLEVEL 1 goto errorgoto end:restart[code]
echo.echo Admin Restart ...echo.goto start:errorecho.echo Server terminated abnormalyecho.:endecho.echo server terminatedecho.pause[/code]

i edited like that:

Code: Select all

java -Djava.util.logging.manager=com.l2jserver.util.L2LogManager -Xms2048m -Xmx1024m -cp ./../libs
But nothing change. How can i increase my memory? thx

Re: System requirements

Posted: Sun Jan 22, 2012 3:56 pm
by tukune
-Xms2048m -Xmx1024m
:evil: small > big
:D small < big

http://docs.oracle.com/javase/1.4.2/doc ... /java.html

Re: System requirements

Posted: Sun Jan 22, 2012 4:07 pm
by darknessneo
banned wrote:
-Xms2048m -Xmx1024m
:evil: small > big
:D small < big

http://docs.oracle.com/javase/1.4.2/doc ... /java.html
thx, better, now =)

Re: System requirements

Posted: Fri Feb 03, 2012 8:02 pm
by OptimusPrime
banned wrote:
-Xms2048m -Xmx1024m
:evil: small > big
:D small < big

http://docs.oracle.com/javase/1.4.2/doc ... /java.html
thanks. Useful.