View Single Post
  #1  
Old 03-31-2019, 12:11 AM
Norrwind
Fire Beetle
 
Join Date: Mar 2019
Posts: 14
Default 1017 error on private server install

Ok, got everything installed using the windows installer on a fresh windows 10 computer. Idea is to set this up as a private server only so I can start the server and play local only. So far I've got everything to come up with no errors. I added an account to the Account" table, can bring up the servers ok, get to login, see my servername and then when trying to get to character creation, get the 1017 error. Client is Secrets of Faydwer, new install, changed the shortcut to point to eqgame.exe and added the patchme piece. I'm at a loss for what I might be missing. Based on the dbg file from everquest it sort of looks like it can't find the user/password somewhere. Ideas??
File data/log info:


eqemu_config.json

{
"server" : {
"database" : {
"db" : "peq",
"host" : "127.0.0.1",
"password" : "password",
"port" : "3306",
"username" : "username"
},
"qsdatabase" : {
"db" : "peq",
"host" : "127.0.0.1",
"password" : "password",
"port" : "3306",
"username" : "username"
},
"webinterface" : {
"port" : "9081"
},
"world" : {
"address" : "127.0.0.1",
"localaddress" : "127.0.0.1",
"http" : {
"enabled" : "true",
"mimefile" : "mime.types",
"port" : "9080"
},
"key" : "DvWyo6SOQVA8zqDzG5utpZuI7um4Kre",
"loginserver" : {
"account" : "Administrator",
"host" : "127.0.0.1",
"password" : "Password1234",
"port" : "5998"
},
"longname" : "Faydwer Live - 20190330",
"shortname" : "Faydwer Live",
"tcp" : {
"ip" : "127.0.0.1",
"port" : "9001"
},
"telnet" : {
"enabled" : "true",
"ip" : "0.0.0.0",
"port" : "9000"
}
},
"zones" : {
"defaultstatus" : "0",
"ports" : {
"high" : "7500",
"low" : "7000"
}
}
}
}


login.ini

[database]
host = 127.0.0.1
port = 3306
db = peq
user = username
password = password
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 = 127.0.0.1
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


eqhost.txt


[LoginServer]
Host=127.0.0.1:5998


After login fails, logout from client, checking login server window:

[Login Server] New world server connection from 127.0.0.1:49965
[World Server] Server Faydwer Live - 20190330(Faydwer Live) successfully logged in.
[Login Server] New Titanium client connection from 127.0.0.1:52298
[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.
[Login Server] New Titanium client connection from 127.0.0.1:52300
[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] Client disconnected from the server, removing client.


World window:

[World Server] Account Attempting to be created: 'Test' status: 0
[MySQL Error] 1062: Duplicate entry 'Test' for key 'name'
INSERT INTO account SET name='Test', status=0, lsaccount_id=3, time_creation=UNIX_TIMESTAMP();
[World Server] Account Attempting to be created: 'Test' status: 0
[MySQL Error] 1062: Duplicate entry 'Test' for key 'name'
INSERT INTO account SET name='Test', status=0, lsaccount_id=3, time_creation=UNIX_TIMESTAMP();
[World Server] Account Attempting to be created: 'Test' status: 0
[MySQL Error] 1062: Duplicate entry 'Test' for key 'name'
INSERT INTO account SET name='Test', status=0, lsaccount_id=3, time_creation=UNIX_TIMESTAMP();


from Everquest dbg.txt log file:

[Sun Mar 31 00:08:33 2019]00039:WorldAuthenticate: Initiating Login.
[Sun Mar 31 00:08:33 2019]00040:WorldAuthenticate: connection lost during authentication.

[Sun Mar 31 00:08:34 2019]00041:Rejected By World. retrying

[Sun Mar 31 00:08:34 2019]00042:Networking: Connection Established [2]
[Sun Mar 31 00:08:35 2019]00043:WorldAuthenticate: Initiating Login.
[Sun Mar 31 00:08:35 2019]00044:WorldAuthenticate: connection lost during authentication.

[Sun Mar 31 00:08:36 2019]00045:Rejected By World. retrying

[Sun Mar 31 00:08:36 2019]00046:Networking: Connection Established [3]
[Sun Mar 31 00:08:38 2019]00047:WorldAuthenticate: Initiating Login.
[Sun Mar 31 00:08:38 2019]00048:WorldAuthenticate: connection lost during authentication.

[Sun Mar 31 00:08:39 2019]00049:Rejected By World. abort abort
Reply With Quote