Jump to content
  • 0

VM error


Greekportal

Question

@echo off
@color 0A
title L2NextGen GameServer
:start
echo %DATE% %TIME% Game server is running !!! > gameserver_is_running.tmp
echo Starting L2NextGen Game Server.
echo.
REM set PATH="type here your path to java jdk/jre (including bin folder)"
REM Default parameters for a basic server.

REM ======== Optimize memory settings =======
REM Minimal size with geodata is 1.5G, w/o geo 1G
REM Make sure -Xmn value is always 1/4 the size of -Xms and -Xmx.
REM -Xms<size>	set initial Java heap size
REM -Xmx<size>	set maximum Java heap size
REM -Xmn<size>	Size of young generation
REM ===============================
REM Set heap min/max to same size for consistent results
REM одинаковый размер памяти для Xms и Xmx, JVM пытается удержать размер heap'а минимальным, и если его нужно меньше, чем в Xmx - гоняет GC понапрасну
SET java_opts=%java_opts% -Xms4096m
SET java_opts=%java_opts% -Xmx4096m

REM Non Heap memory
SET java_opts=%java_opts% -XX:PermSize=512m
REM Maximum size of the permanent generation.
SET java_opts=%java_opts% -XX:MaxPermSize=640m

REM Garbage collector/Performance Options
SET java_opts=%java_opts% -XX:+UseConcMarkSweepGC
SET java_opts=%java_opts% -XX:+UseParNewGC
SET java_opts=%java_opts% -XX:+CMSIncrementalMode
SET java_opts=%java_opts% -XX:MaxGCPauseMillis=500
SET java_opts=%java_opts% -XX:+DoEscapeAnalysis
SET java_opts=%java_opts% -XX:+UseBiasedLocking
SET java_opts=%java_opts% -XX:+EliminateLocks
REM SET java_opts=%java_opts% -XX:CMSIncrementalSafetyFactor=50
REM Number of garbage collector threads for the parallel young generation collections and for the parallel parts of the old generation collections
SET java_opts=%java_opts% -XX:ParallelGCThreads=10
SET java_opts=%java_opts% -XX:ParallelCMSThreads=5

SET java_opts=%java_opts% -XX:+AggressiveOpts
REM Default size of new generation
REM SET java_opts=%java_opts% -XX:NewSize=512m
REM SET java_opts=%java_opts% -XX:MaxNewSize=1024m
REM instructs the VM to set a 2:1 ratio between young and tenured generations (Ratio of new/old generation sizes)
REM SET java_opts=%java_opts% -XX:NewRatio=2
REM Sets survivor space ratio to 1:8, resulting in larger survivor spaces (the smaller the ratio, the larger the space). Larger survivor spaces allow short lived objects a longer time period to die in the young generation
REM SET java_opts=%java_opts% -XX:SurvivorRatio=8
REM Allows 80% of the survivor spaces to be occupied instead of the default 50%, allowing better utilization of the survivor space memory.
REM SET java_opts=%java_opts% -XX:TargetSurvivorRatio=50
REM SET java_opts=%java_opts% -XX:MaxTenuringThreshold=5

SET java_opts=%java_opts% -XX:+UseCMSInitiatingOccupancyOnly
SET java_opts=%java_opts% -XX:CMSInitiatingOccupancyFraction=80

REM SET java_opts=%java_opts% -XX:+CMSParallelRemarkEnabled
SET java_opts=%java_opts% -XX:+CMSClassUnloadingEnabled

REM The important setting in 64-bits with the Sun JVM is -XX:+UseCompressedOops as it saves memory and improves performance
SET java_opts=%java_opts% -XX:+UseCompressedOops
SET java_opts=%java_opts% -XX:+UseFastAccessorMethods

REM Logging
REM SET java_opts=%java_opts% -XX:+PrintGCDetails
REM SET java_opts=%java_opts% -XX:+PrintGCDateStamps
REM SET java_opts=%java_opts% -XX:+PrintGCApplicationStoppedTime
REM SET java_opts=%java_opts% -XX:+PrintGCTimeStamps
REM SET java_opts=%java_opts% -XX:+PrintGC
REM SET java_opts=%java_opts% -Xloggc:./log/game/garbage_collector.log

SET java_settings=%java_settings% -Dfile.encoding=UTF-8
SET java_settings=%java_settings% -Djava.net.preferIPv4Stack=true
SET java_settings=%java_settings% -Dl2nextgen.library=./lib
SET java_settings=%java_settings% -Xbootclasspath/p:./lib/jsr166.jar

java -server %java_settings% %java_opts% -cp ./lib/*;l2nserver.jar l2n.game.GameServer

if ERRORLEVEL 2 goto restart
if ERRORLEVEL 1 goto error
goto end
:restart
echo.
echo L2NGame: Administrator Restarting.
echo.
goto start
:error
echo.
echo L2NGame: Server terminated abnormally.
echo.
:end
echo.
echo L2NGame: Server terminated.
echo.
del gameserver_is_running.tmp
pause

 

εψαξα ολο το forum αλλα δεν με βοηθησε κατι , καποιος που να γνωριζει κατι!

 

μου λεει πως δεν εχω αρκετο Vm!

Link to comment
Share on other sites

Recommended Posts

  • 0

Starting L2NextGen Game Server.

 

Error occurred during initialization of VM

java.lang.NoSuchMethodError: java.lang.ClassLoader.registerAsParallelCap

        at java.security.SecureClassLoader.<clinit>(Unknown Source)

        at sun.misc.Launcher.<init>(Unknown Source)

        at sun.misc.Launcher.<clinit>(Unknown Source)

        at java.lang.ClassLoader.initSystemClassLoader(Unknown Source)

        at java.lang.ClassLoader.getSystemClassLoader(Unknown Source)

Link to comment
Share on other sites

  • 0

@echo off

@color 0A

title L2NextGen GameServer

:start

echo %DATE% %TIME% Game server is running !!! > gameserver_is_running.tmp

echo Starting L2NextGen Game Server.

echo.

REM set PATH="type here your path to java jdk/jre (including bin folder)"

REM Default parameters for a basic server.

 

REM ======== Optimize memory settings =======

REM Minimal size with geodata is 1.5G, w/o geo 1G

REM Make sure -Xmn value is always 1/4 the size of -Xms and -Xmx.

REM -Xms<size> set initial Java heap size

REM -Xmx<size> set maximum Java heap size

REM -Xmn<size> Size of young generation

REM ===============================

REM Set heap min/max to same size for consistent results

REM одинаковый размер памяти для Xms и Xmx, JVM пытается удержать размер heap'а минимальным, и если его нужно меньше, чем в Xmx - гоняет GC понапрасну

SET java_opts=%java_opts% -Xms4096m

SET java_opts=%java_opts% -Xmx4096m

 

REM Non Heap memory

SET java_opts=%java_opts% -XX:PermSize=512m

REM Maximum size of the permanent generation.

SET java_opts=%java_opts% -XX:MaxPermSize=640m

 

REM Garbage collector/Performance Options

SET java_opts=%java_opts% -XX:+UseConcMarkSweepGC

SET java_opts=%java_opts% -XX:+UseParNewGC

SET java_opts=%java_opts% -XX:+CMSIncrementalMode

SET java_opts=%java_opts% -XX:MaxGCPauseMillis=500

SET java_opts=%java_opts% -XX:+DoEscapeAnalysis

SET java_opts=%java_opts% -XX:+UseBiasedLocking

SET java_opts=%java_opts% -XX:+EliminateLocks

REM SET java_opts=%java_opts% -XX:CMSIncrementalSafetyFactor=50

REM Number of garbage collector threads for the parallel young generation collections and for the parallel parts of the old generation collections

SET java_opts=%java_opts% -XX:ParallelGCThreads=10

SET java_opts=%java_opts% -XX:ParallelCMSThreads=5

 

SET java_opts=%java_opts% -XX:+AggressiveOpts

REM Default size of new generation

REM SET java_opts=%java_opts% -XX:NewSize=512m

REM SET java_opts=%java_opts% -XX:MaxNewSize=1024m

REM instructs the VM to set a 2:1 ratio between young and tenured generations (Ratio of new/old generation sizes)

REM SET java_opts=%java_opts% -XX:NewRatio=2

REM Sets survivor space ratio to 1:8, resulting in larger survivor spaces (the smaller the ratio, the larger the space). Larger survivor spaces allow short lived objects a longer time period to die in the young generation

REM SET java_opts=%java_opts% -XX:SurvivorRatio=8

REM Allows 80% of the survivor spaces to be occupied instead of the default 50%, allowing better utilization of the survivor space memory.

REM SET java_opts=%java_opts% -XX:TargetSurvivorRatio=50

REM SET java_opts=%java_opts% -XX:MaxTenuringThreshold=5

 

SET java_opts=%java_opts% -XX:+UseCMSInitiatingOccupancyOnly

SET java_opts=%java_opts% -XX:CMSInitiatingOccupancyFraction=80

 

REM SET java_opts=%java_opts% -XX:+CMSParallelRemarkEnabled

SET java_opts=%java_opts% -XX:+CMSClassUnloadingEnabled

 

REM The important setting in 64-bits with the Sun JVM is -XX:+UseCompressedOops as it saves memory and improves performance

SET java_opts=%java_opts% -XX:+UseCompressedOops

SET java_opts=%java_opts% -XX:+UseFastAccessorMethods

 

REM Logging

REM SET java_opts=%java_opts% -XX:+PrintGCDetails

REM SET java_opts=%java_opts% -XX:+PrintGCDateStamps

REM SET java_opts=%java_opts% -XX:+PrintGCApplicationStoppedTime

REM SET java_opts=%java_opts% -XX:+PrintGCTimeStamps

REM SET java_opts=%java_opts% -XX:+PrintGC

REM SET java_opts=%java_opts% -Xloggc:./log/game/garbage_collector.log

 

SET java_settings=%java_settings% -Dfile.encoding=UTF-8

SET java_settings=%java_settings% -Djava.net.preferIPv4Stack=true

SET java_settings=%java_settings% -Dl2nextgen.library=./lib

SET java_settings=%java_settings% -Xbootclasspath/p:./lib/jsr166.jar

 

java -server %java_settings% %java_opts% -cp ./lib/*;l2nserver.jar l2n.game.GameServer

 

if ERRORLEVEL 2 goto restart

if ERRORLEVEL 1 goto error

goto end

:restart

echo.

echo L2NGame: Administrator Restarting.

echo.

goto start

:error

echo.

echo L2NGame: Server terminated abnormally.

echo.

:end

echo.

echo L2NGame: Server terminated.

echo.

del gameserver_is_running.tmp

pause

 

Μα αυτό δεν είναι σφάλμα...
Link to comment
Share on other sites

  • 0

64bit einai exw kanei install kai to 32bit (windows x86) alla den kserw ti mporei na ftaiei!

 

E για αυτό ρε φιλαράκο x86 και x32 είναι το ίδιο και το αυτό βάλε x64.

Kαι βγάλε εντελώς το x32 ίσως αυτό είναι το πρόβλημα σου. Μη τα μπερδεύεις.

Link to comment
Share on other sites

  • 0

64bit einai exw kanei install kai to 32bit (windows x86) alla den kserw ti mporei na ftaiei!

Διέγραψε τελείως αυτό με τα 32, βάλε το σωστό path του bin στο JAVA_HOME κάνε rr pc και πες μου.
Link to comment
Share on other sites

  • 0

Αναρωτιέμαι γιατί μιλάτε τόση ώρα για την RAM αφού δεν έχει καμία σχέση.

 

Error occurred during initialization of VM

java.lang.NoSuchMethodError: java.lang.ClassLoader.registerAsParallelCap

 

Είναι καθαρό από το error ότι μέσα στον κώδικα καλείται μια μέθοδος που δεν υπάρχει. (η java.lang.ClassLoader.registerAsParallelCap)

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Posts

    • rename the l2.bin into l2.exe
    • L2LIVE.PRO- Dynamic Mid-rates Essence Seven Signs GRAND OPENING - July 5, 20:00 GMT+3 (EEST) TEST SERVER IS OPEN - COME AND CHECK IT OUT TODAY! Join our community and be part of it at: https://www.l2live.pro https://discord.gg/k3NMgR4Dmu   Server description * EXP/SP: Dynamic (x1- x100 based on your level, *before* Sayha and EXP buffs * Adena: x50 / Item Drop: x10 / Fishing EXP increased / Attribute EXP increased * Simplified gameplay to stay in the loop while not spending hours and hours farming * Starter Pack containing very useful items for beginners * MP replenishing potions with auto-consumption * No overpowered donations L2LIVE shop * All spellbook coupons, pet spellbook coupons and master books are sold via Game Assistant * Additionally you can buy SP pouches, enchanted talismans, pet training guides and various other consumables for Adena and L-Coin * More items such as cloaks, more talismans, agathions, belts, pendants, enchantment scrolls of various grades, evolution stones, etc will be added! Shop server as a shortcut, and all retail-like ways of earning items are still here! L-Coins * Drops with small change and in random amounts from Lv60+ monsters  * All raidbosses drop random amount of L-Coin Pouches generating up to 420 Lcoin per unit. **Grand Olympiad and Events** * Grand Olympiad is held week day * Format is 1v1, unlimited weekly fights  * Heroes are declared weekly at Sunday * There are three automated events - TvT, CTF and Deathmatch, running at evenings * Orc Fortress, Battle with Balok, Keber Hunter, Archievements Box, Daily Gift Calendar provisional events are active too Custom user commands * .offlineplay command, your character will keep playing till death or server restart * .offlineshop command, keeps your shop sitting until all items are purchased * .apon / .apoff - enable/disable HP/MP autoconsume And lots of other small improvements are waiting for you!   Join our community and be part of it at: https://www.l2live.pro https://discord.gg/k3NMgR4Dmu
  • Topics

×
×
  • Create New...