Page 1 of 1

Gameserver Command Line?

Posted: Wed Jul 01, 2009 11:52 pm
by DLV123
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision Number:
L2JDP Revision Number:

Here is what my command line looks like so far:

Code: Select all

java -server -Xmx1536m -Xms1536m -Xmn512m -Xincgc -Xnoclassgc -XX:+UseConcMarkSweepGC -XX:+UseParNewGC -XX:SurvivorRatio=8 -XX:TargetSurvivorRatio=90 -XX:MaxTenuringThreshold=31 -XX:+AggressiveOpts  -cp ./../libs/*;l2jserver.jar net.sf.l2j.gameserver.GameServer
Is this a good command Line or should i change some stuff?

Re: Gameserver Command Line?

Posted: Thu Jul 02, 2009 5:28 am
by janiii
add the shoutdown logging ;)

Code: Select all

-Djava.util.logging.manager=net.sf.l2j.util.L2LogManager

Re: Gameserver Command Line?

Posted: Thu Jul 02, 2009 7:35 am
by DLV123
janiii wrote:add the shoutdown logging ;)

Code: Select all

-Djava.util.logging.manager=net.sf.l2j.util.L2LogManager
I have a different way of doing that but is the command line itself good?

Re: Gameserver Command Line?

Posted: Thu Jul 02, 2009 2:10 pm
by Saso
Depends on your server configuration.

If you are consuming too much of the RAM, then at a point of time it will say, Java ran out of Ram space or something.

I would say test it first...

Re: Gameserver Command Line?

Posted: Thu Jul 02, 2009 9:19 pm
by DLV123
Saso wrote:Depends on your server configuration.

If you are consuming too much of the RAM, then at a point of time it will say, Java ran out of Ram space or something.

I would say test it first...
Ok I will thanks
:D