gdelivery error

Results 1 to 5 of 5
  1. #1
    Member TigerIvy is offline
    MemberRank
    Dec 2011 Join Date
    76Posts

    gdelivery error

    Hi all,
    The server will start and run for a bit (time varies) and then all of a sudden no one can access their characters. They are fine as long as they stay logged in. error: gdelivery cannot connect to game D

    any idea what I should do?

    Thanks in advance

    Update - figured out what is doing it - someone made a red chinese symbol in the game and its causing the database to crash. Now to figure out who it belongs to!! Anyone have any suggestions?
    Last edited by TigerIvy; 08-05-12 at 12:53 AM.


  2. #2
    Apprentice ClosetDev is offline
    MemberRank
    Oct 2010 Join Date
    15Posts

    Re: gdelivery error

    that error you get above is normal for all Wanmei games. You need to button down your SQL first then start by open the gamesys.conf of the gamedbd and put in the proper encoding you use(UTF-8 here myself). move to gdeliveryd and change the gamesys again to what your encoding should be.

    If the data needed to be removed is in the auth MYSQL or MSSQL then its a mater of sorting and time if it is the gamedbd data files I am not sure if they can be edited or if they can if it would be worth the huge time to track it down with in the files(would say roll-back time).

    anyways hope was some help to stop this from going on down the road.

  3. #3
    Developer DNC is offline
    DeveloperRank
    Oct 2011 Join Date
    2,493Posts

    Re: gdelivery error

    Here's an old script...
    But it at least shows the proper order and timing.


    Code:
    #!/bin/sh
    
    
    echo Starting authd
    
    cd /usr/rain/authd/
    ./authd > /log/authd.log &
    sleep 10
    
    echo Starting AntiCheat Daemon
    
    cd /usr/rain/gacd
    ./gacd io.conf > /log/gacd.log &
    sleep 10
    
    echo Starting Faction Daemon
    
    cd /usr/rain/gfactiond
    ./gfactiond gamesys.conf > /log/gfactiond.log &
    sleep 10
    
    echo Starting Delivery Daemon
    
    cd /usr/rain/gdeliveryd
    ./gdeliveryd gamesys.conf > /log/gdeliveryd.log &
    sleep 10
    
    echo Starting Link Daemon
    
    cd /usr/rain/glinkd
    ./glinkd gamesys.conf 1 > /log/glinkd.log &
    sleep 10
    
    echo Starting Game Database Daemon
    
    cd /usr/rain/gamedbd
    ./gamedbd gamesys.conf > /log/gamedbd.log &
    sleep 10
    
    echo Starting Unique Name Daemon
    
    cd /usr/rain/uniquenamed
    ./uniquenamed gamesys.conf > /log/uniquenamed.log &
    sleep 10
    
    echo Starting GS 01
    
    cd /usr/rain/gamed
    ./gs gs.conf gmserver.conf gsalias.conf > /log/gs01.log &
    sleep 10
    
    echo Starting Battlefield
    
    cd /usr/rain/gamed
    ./gs gs.conf gmserver.conf gsaliasbf.conf > /log/battlefield.log &
    sleep 10
    
    echo Starting Territory
    
    cd /usr/rain/gamed
    ./gs gs.conf gmserver.conf gsterritory.conf > /log/territory.log &
    sleep 10
    
    echo Starting GS 10
    
    cd /usr/rain/gamed
    ./gs gs.conf gmserver.conf gsalias10.conf > /log/gs10.log &
    sleep 10
    
    echo Starting GS 15
    
    cd /usr/rain/gamed
    ./gs gs.conf gmserver.conf gsalias15.conf > /log/gs15.log &
    sleep 10
    
    echo Starting Toplist
    
    cd /usr/rain/toplist
    ./toplist gamesys.conf toplist.conf > /log/toplist.log &
    sleep 10
    
    echo All Done!!!
    
    sleep 1
    Last edited by DNC; 20-03-15 at 12:19 PM.

  4. #4
    Member TigerIvy is offline
    MemberRank
    Dec 2011 Join Date
    76Posts

    Re: gdelivery error

    Thank you Dark, I think I fixed it but the script helped alot

  5. #5
    Developer DNC is offline
    DeveloperRank
    Oct 2011 Join Date
    2,493Posts

    Re: gdelivery error

    Welcome



Advertisement