Jump to content

Recommended Posts

Posted

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!

Posted

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.

Posted

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.

Posted

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 :)

 

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

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • Posts

    • This update resaves 25_25 from the original (with sounds) (without the cave below) Some emitter fixes (removed waterfalls with high-poly meshes) The geodata is old, but it works Everything else is unchanged Download P.S. The effect files are taken from the high client for Interlude, so if you're experiencing critical skills, use the default ones for your Version.  
    • GX-Ext Which file of the svn files should i edit to make blow skills to have 100% chance so i can add the settings in the IlExt.ini? because when im changing it from the skilldata.txt it just helps
    • 我们感谢您的 反馈 并希望让服务变得更加 优秀! 如果您使用过我们的服务并愿意分享您的体验(任何体验——积极或建设性),请在Trustpilot上留下评价,并获得$1作为感谢。 链接: https://www.trustpilot.com/review/socnet.pro 如何获得奖励: 1. 前往Trustpilot并留下您的评价 2. 向我们发送发布确认截图,以及带有与评价用户名一致的授权账户截图。 3. 指定哪个商店应收到这 $1 奖励。根据商店不同,可能需要您的用户名/电子邮箱。 您的反馈帮助我们成长,并让项目对社区中的每一位成员变得更好。感谢您与我们同行! 条款: 此活动仅适用于一个唯一用户。不允许多账号行为。 项目有效链接: 数字商品商店(网站): 前往 商店 Telegram 机器人: 前往 – 通过 Telegram 方便访问商店。 虚拟号码服务: 前往 用于购买 Telegram Stars 的 Telegram 机器人: 前往 – 在 Telegram 中快捷且优惠地购买 Stars。 SMM 面板: 前往 – 推广您的社交媒体账户。 我们想向您展示当前的 促销和特别优惠列表 用于购买我们提供的产品与服务: 1. 您可在首次购买时使用优惠码:SOCNET(15% 折扣) 2. 获得 $1 商店余额或 10–20% 折扣——只需在我们网站注册后,按照模板填写您的用户名:“SEND ME BONUS, MY USERNAME IS...”并在我们的论坛主题中发布! 3. 首次启动 SMM 面板可获得 $1:只需在我们的网站(Support)提交主题为 “Get Trial Bonus” 的工单。 4. 我们的 Telegram 频道以及 Stars 购买机器人中每周都有 Telegram Stars 抽奖! 新闻: ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp 频道: https://chat.whatsapp.com/K8rBy500nA73z27PxgaJUw?mode=ems_copy_t ➡ Discord 服务器: https://discord.gg/y9AStFFsrh 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ➡ WhatsApp: https://wa.me/79051904467 ➡ Discord: socnet_support ➡ ✉ Email: solomonbog@socnet.store
  • 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