4.7.5.x error under linux

Results 1 to 10 of 10
  1. #1
    Alpha Member Hycker is offline
    MemberRank
    Dec 2010 Join Date
    /root/gameguardLocation
    1,590Posts

    4.7.5.x error under linux

    i asked many times there is no answer yet so i decided to open a thread about it.

    i have this error:
    Code:
    2016-03-05 21:45:35,503 ERROR [main] com.aionemu.gameserver.utils.ThreadUncaughtExceptionHandler [ThreadUncaughtExceptionHandler.java:52] Critical Error - Thread: main terminated abnormaly: java.lang.VerifyError: Expecting a stack map frame
    Exception Details:
      Location:
        com/aionemu/gameserver/utils/javaagent/JavaAgentUtils.checkGlobalCallback()Z @84: iload_2
      Reason:
        Error exists in the bytecode
      Bytecode:
        0000000: 1214 b200 8901 b800 8c4b 2ab6 008e 9900
        0000010: 0703 a700 0703 a700 033d 2ab6 008e 9900
        0000020: 0e2a b600 90c0 004c b600 923d 1214 b200
        0000030: 8901 1cbb 004c 595d 58b7 0094 b800 974b
        0000040: 2ab6 0099 9900 0e2a b600 9ac0 004c b600
        0000050: 92ac 1cac 1cac                         
      Stackmap Table:
        append_frame(@21,Object[#55])
        same_locals_1_stack_item_frame(@25,Integer)
        full_frame(@44,{Top,Top,Integer},{})
        same_frame(@82)
    
    java.lang.VerifyError: Expecting a stack map frame
    Exception Details:
      Location:
        com/aionemu/gameserver/utils/javaagent/JavaAgentUtils.checkGlobalCallback()Z @84: iload_2
      Reason:
        Error exists in the bytecode
      Bytecode:
        0000000: 1214 b200 8901 b800 8c4b 2ab6 008e 9900
        0000010: 0703 a700 0703 a700 033d 2ab6 008e 9900
        0000020: 0e2a b600 90c0 004c b600 923d 1214 b200
        0000030: 8901 1cbb 004c 595d 58b7 0094 b800 974b
        0000040: 2ab6 0099 9900 0e2a b600 9ac0 004c b600
        0000050: 92ac 1cac 1cac                         
      Stackmap Table:
        append_frame(@21,Object[#55])
        same_locals_1_stack_item_frame(@25,Integer)
        full_frame(@44,{Top,Top,Integer},{})
        same_frame(@82)
    
    	at com.aionemu.gameserver.GameServer.initUtilityServicesAndConfig(GameServer.java:237) ~[AC-Game.jar:na]
    	at com.aionemu.gameserver.GameServer.main(GameServer.java:277) ~[AC-Game.jar:na]
    i get this error in centos and in noobuntu too
    java version in ubuntu:
    Code:
    root@ubuntu:/aion/AC-Game# java -version
    java version "1.7.0_80"
    Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
    Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)
    root@ubuntu:/aion/AC-Game#
    Java version in centos:
    Code:
    [root@localhost /]# java -version
    java version "1.7.0_80"
    Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
    Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)
    [root@localhost /]#
    systems on error:
    Code:
    root@ubuntu:/aion/AC-Game# lsb_release -a
    No LSB modules are available.
    Distributor ID: Ubuntu
    Description:    Ubuntu 12.04.4 LTS
    Release:        12.04
    Codename:       precise
    root@ubuntu:/aion/AC-Game#
    Code:
    [root@localhost /]# cat /etc/centos-release
    CentOS release 6.5 (Final)
    [root@localhost /]#
    any advice?


  2. #2
    Apprentice luckarkman is offline
    MemberRank
    Oct 2015 Join Date
    18Posts

    Re: 4.7.5.x error under linux

    which server you find yourself using?

  3. #3
    Alpha Member Hycker is offline
    MemberRank
    Dec 2010 Join Date
    /root/gameguardLocation
    1,590Posts

    Re: 4.7.5.x error under linux

    Released by @GiGatR00n

    Tapatalk-kal küldve az én LG-D802-el

  4. #4
    Valued Member podpol is offline
    MemberRank
    Mar 2015 Join Date
    136Posts

    Re: 4.7.5.x error under linux

    try it

    https://mega.nz/#!jpYjnCjb!TJDIN6oV1VORA2PaVOkOP606ukSGdktu9BVN3f_wV58

    when you modify something in windows you will not see the smoll bites left in file.

    this problem because that...

    problem, solved! this was not java. it was some thing with format os the file.


    Debian 7
    Code:
    dos2unix
    you will need to install!
    ater that go to derectory where the aion gameserver
    Code:
    cd /home/aionserver/
    
    StartGS.sh
    Code:
    #!/bin/bash
    
    case $1 in
    noloop)
    [ -d log/ ] || mkdir log/
    [ -f log/console.log ] && mv log/console.log "log/backup/`date +%Y-%m-%d_%H-%M-%S`_console.log"
    java -Xms128m -Xmx3072m -ea -XX:-UseSplitVerifier -javaagent:./libs/ac-commons-1.3.jar -cp ./libs/*:AC-Game.jar com.aionemu.gameserver.GameServer > log/console.log 2>&1
    echo $! > gameserver.pid
    echo "Server started!"
    ;;
    *)
    ./StartGS_loop.sh &
    ;;
    esac
    Server_loop.sh (possible that you will not find that. make it bya your self. just make copy of StartGS and rename)
    Code:
    #!/bin/bash
    
    err=1
    until [ $err == 0 ];
    do
    [ -d log/ ] || mkdir log/
    [ -f log/console.log ] && mv log/console.log "log/backup/`date +%Y-%m-%d_%H-%M-%S`_console.log"
    java -Xms128m -Xmx3072m -XX:-UseSplitVerifier -ea -javaagent:./libs/ac-commons-1.3.jar -cp ./libs/*:AC-Game.jar com.aionemu.gameserver.GameServer > log/console.log 2>&1
    err=$?
    gspid=$!
    echo ${gspid} > gameserver.pid
    sleep 10
    done
    and do this (cd /home/aionserver/)
    Code:
    dos2unix StartGS.sh
    dos2unix Start_loop.sh
    after that just start your files
    Code:
    ./SrartGS.sh
    Last edited by podpol; 07-03-16 at 07:23 PM.

  5. #5
    Alpha Member Hycker is offline
    MemberRank
    Dec 2010 Join Date
    /root/gameguardLocation
    1,590Posts

    Re: 4.7.5.x error under linux

    I'm grateful for you, you wanna help me about that issue but its not about envs in sh scripts.
    if i had bad intepreter issue i rather use sed -i -e 's/\r$//' for solve those problems.

    so i wont blame you but your answer is useless for me

  6. #6
    Enthusiast Soundoflight is offline
    MemberRank
    Oct 2015 Join Date
    GermanyLocation
    37Posts

    Re: 4.7.5.x error under linux

    Did you provide Java 7 in automode ?

    Regards

  7. #7
    Alpha Member Hycker is offline
    MemberRank
    Dec 2010 Join Date
    /root/gameguardLocation
    1,590Posts

    Re: 4.7.5.x error under linux

    simply answer is yes

  8. #8
    Enthusiast Soundoflight is offline
    MemberRank
    Oct 2015 Join Date
    GermanyLocation
    37Posts

    Re: 4.7.5.x error under linux

    Ok ^^ Im asking because it fixed the Problem on my Ubuntu 15.04 Server

  9. #9
    Alpha Member Hycker is offline
    MemberRank
    Dec 2010 Join Date
    /root/gameguardLocation
    1,590Posts

    Re: 4.7.5.x error under linux

    bump! still looking for helping hand

  10. #10
    Enthusiast Soundoflight is offline
    MemberRank
    Oct 2015 Join Date
    GermanyLocation
    37Posts

    Re: 4.7.5.x error under linux

    Maybe you can try another AC-Game.jar :)



Advertisement