How to optimise Startup Speed
Posted: Wed Oct 23, 2013 8:11 am
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision 5937: Built from source code with Option 2. Stable Subversion Access from this page. Built with Eclipse on Windows.
L2JDP Revision 9981:
Hi, how could i optimise server startup speed? Actually is 306 sec (aka 5min) to start.
These are temporary hardware specs since there won't be large amounts of players yet.
Configuration : (disk is ssd)
http://mondialdeal.be/srvcfg.png
Can i turn all tables to InnoDB? Will this help? Are there any mysql optimisations i can do in this situation? If so will this block me later when the server will be stronger? (IE Changing tables engine to innodb)
Java Version:
The actual GameServer_loop.sh:
Any other optimisations to be done?
Help is appreciated! Just post your ideas
Thanks!
» Find Revision
L2J Revision 5937: Built from source code with Option 2. Stable Subversion Access from this page. Built with Eclipse on Windows.
L2JDP Revision 9981:
Hi, how could i optimise server startup speed? Actually is 306 sec (aka 5min) to start.
These are temporary hardware specs since there won't be large amounts of players yet.
Configuration : (disk is ssd)
http://mondialdeal.be/srvcfg.png
Can i turn all tables to InnoDB? Will this help? Are there any mysql optimisations i can do in this situation? If so will this block me later when the server will be stronger? (IE Changing tables engine to innodb)
Java Version:
Code: Select all
user@srv71:~$ java -versionjava version "1.7.0_45"Java(TM) SE Runtime Environment (build 1.7.0_45-b18)Java HotSpot(TM) 64-Bit Server VM (build 24.45-b08, mixed mode)
Code: Select all
#!/bin/bash # exit codes of GameServer:# 0 normal shutdown# 2 reboot attempt while :; do java -Djava.util.logging.manager=com.l2jserver.util.L2LogManager -Djava.awt.headless=true -Xms3072m -Xmx3072m -cp ./../libs/*:l2jserver.jar com.l2jserver.gameserver.GameServer 2>&1 [ $? -ne 2 ] && break# /etc/init.d/mysql restart sleep 10done
Help is appreciated! Just post your ideas

Thanks!