Jump to content

[Guide]Optimizing l2j server for online 600+


Recommended Posts

This Manual has written instructions for optimizing Windows Server 2003 x64, and MySQL on the work of Lineage 2 servers with online 500-600.

Everyone knows that Windows is the standard always allocates a large part of the RAM internal services that work in the background.

Such a distribution is not satisfying.

Therefore:

1. Right-click on My Computer and select Properties

2. Click on the Advanced tab

3. You will see a window with a button Performance Options "Click on it. (New window)

4. Click on the Advanced tab

5. In this window, click the Advanced tab.

6. Here you see "Distribution of CPU time and memory usage" put anywhere "program."

 

Thus, we achieve the proper distribution of power.

Now we need to allocate more virtual memory for the system.

We do it this way:

1. Right-click on My Computer and select Properties (new window will appear)

2. Click on the Advanced tab

3. You will see a window with a button Performance Options "Click on it. (New window)

4. Click on the Advanced tab

5. At the bottom of the section "Virtual Memory" in this section, click edit.

6. A new window appears in the window, select your hard drive where you should your server when the selected disk to the server, then just below, select "Paging file size for selected drive, click Custom size."

7. There will be two windows to enter:

Initial size (MB):

Maximum size (MB):

In these fields, you enter the amount of total memory divided by 1.5, ie at the moment I have 8.5 GB of RAM, I divide 8500 by 1.4, we obtain an approximate value: 6100 GB

This approximate value is entered in both places. Check that you have shared is true and to write on both windows, the same values. Then click Ok.

8. Close all windows and restart your computer.

 

If you have an extra empty hard disk, I advise you to use it under the swap file.

At this stage, set up Windows over.

 

Now go to the settings of MySQL, we have long and successfully installed.

 

Primarily set up the maximum number of connections (connection) to MySQL:

 

Maximum number of competing sessions MYSQL server will allow connect. One of these connections will be reserved for the customer with the highest privileges, ie, for the administrator, even if the connection limit has been reached.

 

max_connections = 2000 - then set about 2000, it will be an optimum value for the server, given that you do and the base site, which also connects to.

 

If your tables get large, you need to put a greater value than it is, ie, if your table weighs 200 MB, then you need to put in 2 times is 512.

table_cache = 256

 

This additional memory is allocated for the tables if they are larger than the specified value table_cache, tuning is more than enough 8mb

innodb_additional_mem_pool_size = 8M

 

It makes no sense to put more 16M

he size of the buffer InnoDB uses for buffering log data .  As soon AS
   # It is full, InnoDB will have to flush it to disk. As it is flushed
   # Once per second anyway, it does not make sense to have it very large
   # (Even with long transactions).
   innodb_log_buffer_size = 16M

 

If the server has free RAM, then you can increase the value that would be beneficial for the base.

# InnoDB, unlike MyISAM, uses a buffer pool to cache both indexes and
   # Row data. The bigger you set this the less disk I / O is needed to
   # Access data in tables. On a dedicated database server you may set this
   # Parameter up to 80% of the machine physical memory size. Do not set it
   # Too large, though, because competition of the physical memory may
   # Cause paging in the operating system. Note that on 32bit systems you
   # Might be limited to 2-3.5G of user level memory per process, so do not
   # Set it too high.
   innodb_buffer_pool_size = 1024M

 

Usually exhibit a half from my innodb_buffer_pool_size.

Remember, if you change this configuration, you need to turn off the muscle and remove the logs.

Logs are: MySQL Server 5.0 \ data

remove ib_logile0 and ib_logfile1

# Size of each log file in a log group. You should set the combined size
   # Of log files to about 25% -100% of your buffer pool size to avoid
   # Unneeded buffer pool flush activity on log file overwrite. However,
   # Note that a larger logfile size will increase the time needed for the
   # Recovery process.
   innodb_log_file_size = 512M

 

Assembly (for example, the assembly of Scoria):

gameserver_loop.sh

Dbhost = localhost
   USER = root
   PASS =
   DBNAME = l2jdb

   ERR = 1
   Until  [ $ ERR ==  0  ];
   do
   # Mysqlcheck-h $ DBHOST-u $ USER - password = $ PASS-s-r $ DBNAME>> "log /` date +% Y-% m-% d_% H:% M:% S `-sql_check. log "
   # Mysqldump-h $ DBHOST-u $ USER - password = $ PASS $ DBNAME | zip "backup /` date +% Y-% m-% d_% H:% M:% S `-l2jdb_gameserver.zip" -
   MV . / log / java0 . log . 0  ". / log /` date +% Y-% m-% d_% H-% M-% S `_java.log"
   MV . / log / stdout . log ". / log / Date` +% Y-% m-% D_% H-% M-% S `_stdout.log"
   # If need - uncoment # # mv. / Log / chat.log ". / Log /` date +% Y-% m-% d_% H:% M:% S `-chat.log" #
   Java - Dfile . Encoding = UTF - 8  - Xms1024m  - Xmx2048m  - XX : + UseParallelGC  - XX : + AggressiveOpts  - CP . / lib / *: l2scoria-mmocore-2.jar: bsh-engine.jar: bsh-2.0b5. jar: c3p0-0.9.1.2.jar: jython.jar: jython-engine.jar: commons-logging-1.1.jar: commons-io-1.2.jar: commons-lang-2.1.jar: javolution.jar: mysql- connector-java-5.1.8-bin.jar: / lib/l2scoria-core-3.jar com.l2scoria.gameserver.GameServer>. / log / stdout.log 2> & 1
   sleep 10;
   done

 

mmocore.properties

#------------------------------------------------- ------------
   # Set buffer compounds -
   #------------------------------------------------- ------------
   # The buffer size in kbit (kilobits)
   # By default (Windows) - 64KBits
   # Default (* nix) - 128KBits
   NetworkReadBufferSize  =  128
   NetworkWriteBufferSize  =  128
   NetworkHelperBufferSize  =  128
   ***  If  Win  -  64  stake
   # The size of auxiliary buffers
NetworkHelperBufferCount  =  20

 

flood.properties

# Must be the approximate value of players
   FloodProtectorInitialSize  =  600

 

I hope this Guide will help you, it has certainly helped me alot!

Link to comment
Share on other sites

Virtual Memory... REALLY? Virtual memory will give some extra virtual ram memory wich will be very very slow compared to real ram, cause it will write everything to hard disk. Your server will run, but it will lag like hell. Best thing in optimizing your server would be: delete windows, install linux.

Link to comment
Share on other sites

L2j cannot be optimized from pc side theres simple no way. L2j have the performance/stability issues inside the software if you make proper code changes you can make it stable with good performance stats but to be honest thats a lot of work.

 

Let me explain just a few stuff why this guide is not what ppl needs.

L2j use trove trove isnt a good idea it makes the script not safe since trove is not thread safe itself.

L2j many times dont show proper log which makes your work harder as far as finding an issue goes.

L2j have absolutely no code standard which leads to a mess.

 

Things like i stated above result in a pack thats slow,use a lot of resources for absolutely no reason,unstable and for that you got absolutely no features.

 

Even if you install it on linux.

Link to comment
Share on other sites

and by 1000 people? There is a manual?

Yes its the same but make some changes to make it for 1k ppl

 

Virtual Memory... REALLY? Virtual memory will give some extra virtual ram memory wich will be very very slow compared to real ram, cause it will write everything to hard disk. Your server will run, but it will lag like hell. Best thing in optimizing your server would be: delete windows, install linux.

hmm not really that is means the windows is better than linux and ofc linux is the best choice about the server but many ppl dont knows much about linux :)

 

Link to comment
Share on other sites

  • 3 weeks later...
  • 4 months later...

Yes its the same but make some changes to make it for 1k ppl

hmm not really that is means the windows is better than linux and ofc linux is the best choice about the server but many ppl dont knows much about linux :)

 

 

I saw once a sign where it said

 

if(want L2j stable)

use Linux;

else

use Windows;

 

Now i can't say Windows is rubbish but you need to set virtual memory while Linux will just start using swap. Another thing is that Linux 64 bit clean with just mysql and whats needed to run the L2j will use arround 500mb of RAM while i believe Windows would use arround 1GB. So from performance view Linux are better but for unexperienced user Linux will be pain in the ass :D

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • LF client H5 part 5 protocol 273 if there is any change, thank you very much!
    • Try Asocks proxy for FREE! All you need to do is to write a reply to this topic and we will send you a promo code for a 3GB in DMs!   Our users are also able to get extra traffic by checking our available options on the Bonus page. 
    • the link is deactivated. Would anyone have it available?
    • Up / still looking /@Pufa bro your prices are to big 
    • As i was going through some old files i found this code that i made a while ago its pretty simple and can be improved for sure but i got no interest on it anymore .   The code checks what type of life stone it is Mid High Top etc. and augments the weapon based on the augment rate of your server if its a skill it will disarm weapon and show you the name and type of skill .   for example player.sendPacket(new CreatureSay(0, SayType.HERO_VOICE, "[" + type + "]", "You got " + name)); sendMessage(player, type + " : You got " + name);   you also have to register it on your net.sf.l2j.gameserver.handler.ItemHandler.java   registerHandler(new FastAugmentation());   and on your items xml file e.g gameserver/data/xml/items/8700-8799.xml   add this add this <set name="handler" val="FastAugmentation" /> It should be like this <item id="8762" type="EtcItem" name="Top-Grade Life Stone: level 76"> <set name="material" val="LIQUID" /> <set name="weight" val="2" /> <set name="price" val="4800000" /> <set name="handler" val="FastAugmentation" /> <set name="is_stackable" val="true" /> <cond msgId="113"> <player level="76" /> </cond> </item>   it can be easily adapted for any l2j pack the code above is for aCis 398? if not mistaken   BACKUPCODE package net.sf.l2j.mods.itemhandlers; import net.sf.l2j.gameserver.data.xml.AugmentationData; import net.sf.l2j.gameserver.enums.Paperdoll; import net.sf.l2j.gameserver.enums.SayType; import net.sf.l2j.gameserver.handler.IItemHandler; import net.sf.l2j.gameserver.model.Augmentation; import net.sf.l2j.gameserver.model.actor.Playable; import net.sf.l2j.gameserver.model.actor.Player; import net.sf.l2j.gameserver.model.item.instance.ItemInstance; import net.sf.l2j.gameserver.network.serverpackets.CreatureSay; import net.sf.l2j.gameserver.network.serverpackets.ExShowScreenMessage; import net.sf.l2j.gameserver.network.serverpackets.InventoryUpdate; import net.sf.l2j.gameserver.network.serverpackets.SocialAction; /** * @author RKolibri */ public class FastAugmentation implements IItemHandler { @Override public void useItem(Playable playable, ItemInstance item, boolean forceUse) { Player player = (Player) playable; ItemInstance weapon = player.getInventory().getItemFrom(Paperdoll.RHAND); Augmentation topLs = AugmentationData.getInstance().generateRandomAugmentation(76, 3); Augmentation highLs = AugmentationData.getInstance().generateRandomAugmentation(76, 2); Augmentation midLs = AugmentationData.getInstance().generateRandomAugmentation(76, 1); Augmentation noGradeLs = AugmentationData.getInstance().generateRandomAugmentation(76, 0); InventoryUpdate iu = new InventoryUpdate(); int ls = item.getItemId(); if (weapon == null) { player.sendMessage("You have to equip a weapon first."); return; } if (weapon.getItem().getCrystalType().getId() <= 3) { player.sendMessage("Fast Augmentation available only for A and S grade Weapons!"); return; } if (weapon.isHeroItem()) { player.sendMessage("Hero weapons can't be augmented!"); return; } if (weapon.isAugmented()) { removeAug(playable); } else { player.destroyItem("Consume", item.getObjectId(), 1, null, false); Augmentation augmentation; if (ls == 8762) { augmentation = topLs; } else if (ls == 8752) { augmentation = highLs; } else if (ls == 8742) { augmentation = midLs; } else if (ls == 8732) { augmentation = noGradeLs; } else { return; } weapon.setAugmentation(augmentation); iu.addModifiedItem(weapon); player.sendPacket(iu); player.broadcastUserInfo(); if (weapon.getAugmentation().getSkill() == null) { player.sendMessage("No luck try again!"); } else { checkAugmentResult(playable); } } } public static boolean removeAug(Playable playable) { Player player = (Player) playable; ItemInstance weapon = player.getInventory().getItemFrom(Paperdoll.RHAND); InventoryUpdate iu = new InventoryUpdate(); weapon.getAugmentation().removeBonus(player); weapon.removeAugmentation(true); iu.addModifiedItem(weapon); player.sendPacket(iu); player.broadcastUserInfo(); return true; } private static void checkAugmentResult(Playable playable) { Player player = (Player) playable; ItemInstance weapon = player.getInventory().getItemFrom(Paperdoll.RHAND); String name = weapon.getAugmentation().getSkill().getName(); boolean isChance = weapon.getAugmentation().getSkill().isChance(); boolean isActive = weapon.getAugmentation().getSkill().isActive(); boolean isPassive = weapon.getAugmentation().getSkill().isPassive() && !isChance; InventoryUpdate iu = new InventoryUpdate(); String type; if (isChance) { type = "CHANCE"; } else if (isActive) { type = "ACTIVE"; } else if (isPassive) { type = "PASSIVE"; } else { return; } player.sendPacket(new CreatureSay(0, SayType.HERO_VOICE, "[" + type + "]", "You got " + name)); sendMessage(player, type + " : You got " + name); player.broadcastPacket(new SocialAction(player, 3)); player.disarmWeapon(true); iu.addModifiedItem(weapon); player.sendPacket(iu); player.broadcastUserInfo(); } public static void sendMessage(final Player player, final String message) { player.sendPacket(new ExShowScreenMessage(message, 3000, ExShowScreenMessage.SMPOS.TOP_CENTER, true)); player.sendMessage(message); } }   Pastebin   Have fun and enjoy Author : RKolibri Credits : RKolibri  
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock