How to add additional game server in Aion.

Results 1 to 6 of 6
  1. #1
    Apprentice glenngem21 is offline
    MemberRank
    Oct 2013 Join Date
    8Posts

    How to add additional game server in Aion.

    Guys can you please help me how can i add additional game server in Aion. lets say the 1st server is Siel and the other one is Lumiel.

    I already did some configuration in Navicat:

    1. i add additional game server which is this one "al_server_gs_2"
    2. i also add another line in gameserver under al_server_ls see screenshotgameserver.png
    3. i also copy my game folder and do some configuration in the network and database please check the screenshot.
    aionemulator.png
    inside the game -copy folder under /config/network there are 2 files database and network

    here's what i did in database
    #
    # This file is part of aion-unique <aion-unique.org>.
    #
    # aion-unique is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # aion-unique is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with aion-unique. If not, see <http://www.gnu.org/licenses/>.
    #
    # ----------------------------
    # Database Config's:
    # ----------------------------


    # This class represents database driver class that will be used while connecting to database
    database.driver = com.mysql.jdbc.Driver


    # This is database url.
    database.url = jdbc:mysql://localhost:3316/al_server_gs_2?useUnicode=true&characterEncoding=UTF-8 -> change it to "al_server_gs_2"
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

    In network config here's what i did.
    #
    # This file is part of aion-unique <aion-unique.org>.
    #
    # aion-unique is free software: you can redistribute it and/or modify
    # it under the terms of the GNU General Public License as published by
    # the Free Software Foundation, either version 3 of the License, or
    # (at your option) any later version.
    #
    # aion-unique is distributed in the hope that it will be useful,
    # but WITHOUT ANY WARRANTY; without even the implied warranty of
    # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    # GNU General Public License for more details.
    #
    # You should have received a copy of the GNU General Public License
    # along with aion-unique. If not, see <http://www.gnu.org/licenses/>.
    #
    # ----------------------------
    # Network Config's:
    # ----------------------------


    # Port that will be used to listen for client connections
    gameserver.network.client.port = 7777


    # Host that will be used to listen for client connections
    gameserver.network.client.host = *


    # Maximum online players on the server
    gameserver.network.client.maxplayers = 100


    # Address of login server
    gameserver.network.login.address = localhost:9014


    # Id of this game server
    gameserver.network.login.gsid = 32 -> change it to "32" which is telemachus but when i run the game, the telemachus server is down. here is the screenshot.
    game.png

    please guide me how can i add additional game server thank you.


  2. #2
    Account Upgraded | Title Enabled! kornicska is offline
    MemberRank
    Sep 2013 Join Date
    582Posts

    Re: How to add additional game server in Aion.

    you database login server = al_server_ls ?
    and gameserver database = al_server_gs_2 ?

  3. #3
    Apprentice glenngem21 is offline
    MemberRank
    Oct 2013 Join Date
    8Posts

    Re: How to add additional game server in Aion.

    Hi kornicska yes my database login server is = al_server_ls
    my database is = al_server_gs this is the original gameserver database.
    the al_server_gs_2 is the additional gameserver i add in navicat. so how can i make the 2 servers work? because what happen is i add additional server but when i logon in the game the other server is down and the other one is up.

    if you can guide me how can i do it please show me thanks.

  4. #4
    Account Upgraded | Title Enabled! kornicska is offline
    MemberRank
    Sep 2013 Join Date
    582Posts

    Re: How to add additional game server in Aion.

    If a machine already running on the server Example 4.0
    and you want to launch yet one body Server 4.0
    you should pay attention to, confirm to have the ports are not the same in the two server
    because collisions occur
    Set the port so that it can only give a value

    example



    runing gameserver 1

    Address of chat server
    # Ip and port of chat server should be accessible from
    # 1) game server
    # 2) all connected clients
    gameserver.network.chat.address = localhost:9021

    runing gameserver test

    Address of chat server
    # Ip and port of chat server should be accessible from
    # 1) game server
    # 2) all connected clients
    gameserver.network.chat.address = localhost:9022

    You can see how much has changed over the port, but will avoid the collision

    sql database use 2 server





    the database if you prefer the names are just like ls and gs

    example:

    server 1 database

    al_server_ls
    al_server_gs


    server 2 database

    test_server_ls
    test_server_gs

    1 login server database never use simultaneously 2 gameserver

    example: runing online ad runind test server no use 1 login server : al_server_ls /al_server_ls

    it is due to conflict with ports, and also due to changes in saving data modification
    quarrel

    2 game if you want to run one machine at a time Server

    you two need to login server



    and 2 gameserver and login server runing you 1 masine

    login and gameserver start bat file edited

    gameserver 1 runing original
    dt_socket,address=8998

    gameserver tesst version runing
    dt_socket,address=8999

    are also changing between the two server ports
    it does not start Game 2 because of a server it simultaneously
    so as Selver login
    Last edited by kornicska; 31-10-13 at 06:52 AM.

  5. #5
    Apprentice glenngem21 is offline
    MemberRank
    Oct 2013 Join Date
    8Posts

    Re: How to add additional game server in Aion.

    Hi Kornicska thanks for the help the 2 servers are now up and running. But here's my problem now when i logon in to the game i got an error which is SM_LOGIN_FAIL. If i use my previous account i can logon successfully but if i will create a new account i will get the error below please advice what should i do.
    loginerror.png connection-failure.png

    my second problem now is with my database i guess i'm pointing the database in same game server because i can see that in yustiel server i have 1 char but i didn't create a char in there. see screenshot below thanks.
    databaseaccount-error.png

  6. #6
    Account Upgraded | Title Enabled! kornicska is offline
    MemberRank
    Sep 2013 Join Date
    582Posts

    Re: How to add additional game server in Aion.

    sm_login_fail... hm...

    logined account you created caracter? and letter logined problem?


    account that this is a problem that has been character?
    If there is, write to the database character coordinates

    map, x, y, z, head
    and save

    The Elyos edited sanctum Cordinate
    The ASMO edited Pandaemonium Cordinate

    Cordinate look the gameserver / data / static_data / spawn / npc / panda or sanctum xml

    and save database caracter and logined account.



Advertisement