View Single Post
  #1  
Old 02-25-2019, 04:54 PM
belvino
Fire Beetle
 
Join Date: Feb 2019
Location: MS
Posts: 25
Default Akkadius Server Install LAN Login

Been working with the PEQ server in Akkadius install and followed the instructions to setup login over Lan. I've seen a few post on this forum but people fix it without posting a solution or at least a solution I understand.

##I forgot to add the Server plays flawless locally. changing the loginserver2 to 127.0.0.1 I can logg in with it on the same pc as client no problem. I'm trying to put it on LAN so i don't have to carrry the DB around with me.

Where I'm at: I can see the server on server list and showing it is up. I can Make character and it saves in database but times out as it loads server. After i logg back in on same account Character is there but still times out.

I can also see the server on server select and
All firewalls on router and Windows on server PC and Clients have been disabled. Running Win 7 on server pc and tryed Win10 and win7 client side.

Here is my eqemu_config.json file
Code:
{
     "server" : {
          "chatserver" : {
               "host" : "",
               "port" : "7778"
          },
          "database" : {
               "db" : "peq",
               "host" : "localhost",
               "password" : "eqemu",
               "port" : "3306",
               "username" : "root"
          },
          "mailserver" : {
               "host" : "",
               "port" : "7778"
          },
          "qsdatabase" : {
               "db" : "peq",
               "host" : "localhost",
               "password" : "eqemu",
               "port" : "3306",
               "username" : "root"
          },
          "webinterface" : {
               "port" : "9081"
          },
          "world" : {
               "http" : {
                    "enabled" : "true",
                    "mimefile" : "mime.types",
                    "port" : "9080"
               },
               "key" : "GcRXOhNEPGFA6rpkq2j1n4hCWST0U1c",
               "loginserver1" : {
                    "account" : "",
                    "host" : "login.eqemulator.net",
                    "legacy" : "1",
                    "password" : "",
                    "port" : "5998"
               },
               "loginserver2" : {
                    "account" : "",
                    "host" : "192.168.0.99",
                    "password" : "",
                    "port" : "5998"
               },
               "longname" : "BelvQuest",
               "shortname" : "BQ",
               "tcp" : {
                    "ip" : "127.0.0.1",
                    "port" : "9001"
               },
               "telnet" : {
                    "enabled" : "true",
                    "ip" : "0.0.0.0",
                    "port" : "9000"
               }
          },
          "zones" : {
               "defaultstatus" : "0",
               "ports" : {
                    "high" : "7400",
                    "low" : "7000"
               }
          }
     }
}
and here is my Login.ini
Code:
[database]
host = localhost
port = 3306
db = peq
user = root
password = eqemu
subsystem = MySQL

[options]
unregistered_allowed = TRUE
reject_duplicate_servers = FALSE
trace = TRUE
world_trace = FALSE
dump_packets_in = FALSE
dump_packets_out = FALSE
listen_port = 5998
local_network = 192.168.0.99
auto_create_accounts = TRUE

[security]
plugin = EQEmuAuthCrypto
mode = 5

[Titanium]
port = 5998
opcodes = login_opcodes.conf

[SoD]
port = 5999
opcodes = login_opcodes_sod.conf

[schema]
account_table = loginserver_server_accounts
world_registration_table = loginserver_world_server_registration
world_admin_registration_table = loginserver_server_admin_registration
world_server_type_table = loginserver_server_list_type
This is the 2 files they said in the walk through i needed to edit.

Is there anywhere else i need to also be looking?
Any help is appreciated. I'm new so sql and perl so might have to dumb it down for me.


Add*
Here what i am getting from my login server window.
[Login Server] New SoD client connection from 192.168.0.54:55219
[Login Server] Application packet received from client (size 14)
[Login Server] Session ready received from client.
[Login Server] Application packet received from client (size 2
[Login Server] Login received from Client.
[Login Server] Application packet received from client (size 12)
[Login Server] Server list request received from client.
[Login Server] Application packet received from client (size 16)
[Login Server] Play received from client, server number 2 sequence 5.
[Login Server] Application packet received from client (size 12)
[Login Server] Client disconnected from the server, removing client.

Last edited by belvino; 02-26-2019 at 09:24 AM.. Reason: Added info and ##added More info.
Reply With Quote