Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::General Support

Support::General Support Post all topics here having to do with errors while trying to connect to an EQEMu server but not about the setup/running of the Server itself.

Reply
 
Thread Tools Display Modes
  #1  
Old 04-22-2019, 02:29 AM
Dryamzord01
Hill Giant
 
Join Date: Jul 2018
Posts: 161
Exclamation Please Help

Please, can you help me? I have the ports wide open, and the server loads me as successfully connected, but when someone is entered into the server a person is created and it is logged in disconnected ... I have the wrong configured in the database the ip, so that in eqemuconfig or in login.ini, could you help me please
Reply With Quote
  #2  
Old 04-22-2019, 05:29 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

You don't need to touch the IP address showing in the database. There is config samples posted on these forums, (as well as the ports you need opened to the public), you just have to look for them. (try windows server support). If you installed with Akka's installer, it's usually good to go, right out of the box. You might want to read the support topics in the wiki as well. They are big help.
Reply With Quote
  #3  
Old 04-22-2019, 08:12 AM
Dryamzord01
Hill Giant
 
Join Date: Jul 2018
Posts: 161
Unhappy

public port the 9000, and others are the 7778, 7000-7400, 5998-5999, use the same PC to play and to use the server. The 9000 are open at http://canyouseeme.org. He tells me yes. and in the wiki I have looked at it, in local_network of login ini I have host = 127.0.0., and in eqemu config




{
"server": {
"chatserver": {
"host": "127.0.0.1",
"port": "7778"
}
"database": {
"db": "peq",
"host": "127.0.0.1",
"password": "eqemu",
"port": "3306",
"username": "root"
}
"directories": {
"logs": "logs /",
"lua_modules": "lua_modules /",
"maps": "maps /",
"patches": "./",
"plugins": "plugins /",
"missions": "missions /",
"shared_memory": "shared /"
}
"mail server" : {
"host": "192.168.0.156",
"port": "7778"
}
"qsdatabase": {
"db": "peq",
"host": "127.0.0.1",
"password": "eqemu",
"port": "3306",
"username": "root"
}
"world": {
"http": {
"enabled": "false",
"mimefile": "mime.types",
"port": "9080"
}
"key": "9npveFWHdhWCrqEkKbpJiPHPawh74Wt",
"blocked": "false",
"loginserver1": {
"account": "*********",
"host": "login.eqemulator.net",
"legacy": "1",
"password" : "**********",
"port": "5998"
}
"loginserver2": {
"account": "**********",
"host": "192.162.0.156",
"legacy": "0",
"password" : "***********",
"port": "5998"
}
"longname": "OLD TAMPER OF KERAFYRM RoF2 [EXP + / loot +] [Solo / group / raid]",
"shortname": "AkkasPEQInstaller",
"tcp": {
"ip": "127.0.0.1",
"port": "9000",
"telnet": "disable"
}
}
"zones": {
"defaultstatus": "0",
"ports": {
"high": "7400",
"low": "7000"
}
}
}
}

when starting the server with login server, everything is loaded well and ends up putting, succesfully loggen inn, and people can create a character, but when they log in they disconnect



in the database in the login server account, loginserver admin account, and in login server world, do not have to put an ip in each one?
Reply With Quote
  #4  
Old 04-22-2019, 09:11 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Sometimes people are not paying enough attention to details in their config (typos, etc). Example; You had "blocked", instead of "locked" ALSO, make sure the longname and shortname in your config, are exactly the same (all characters) as the database. If you're logging in from the same computer as the server, this will work for you.
Code:
{
     "server" : {
          "chatserver" : {
               "host" : "127.0.0.1",
               "port" : "7778"
          },
          "database" : {
               "db" : "peq",
               "host" : "127.0.0.1",
               "password" : "eqemu",
               "port" : "3306",
               "username" : "root"
          },
          "directories" : {
               "logs" : "logs/",
               "lua_modules" : "lua_modules/",
               "maps" : "maps/",
               "patches" : "./",
               "plugins" : "plugins/",
               "quests" : "quests/",
               "shared_memory" : "shared/"
          },
          "mailserver" : {
               "host" : "127.0.0.1",
               "port" : "7778"
          },
          "qsdatabase" : {
               "db" : "peq",
               "host" : "127.0.0.1",
               "password" : "eqemu",
               "port" : "3306",
               "username" : "root"
          },
          "world" : {
               "http" : {
                    "enabled" : "false",
                    "mimefile" : "mime.types",
                    "port" : "9080"
               },
               "key" : "9npveFWHdhWCrqEkKbpJiPHPawh74Wt",
               "locked" : "false",
               "loginserver1" : {
                    "account" : "*********",
                    "host" : "login.eqemulator.net",
                    "legacy" : "1",
                    "password" : "**********",
                    "port" : "5998"
               },
               "loginserver2" : {
                    "account" : "*********",
                    "host" : "127.0.0.1",
                    "legacy" : "0",
                    "password" : "*********",
                    "port" : "5998"
               },
               "longname" : "OLD TAMPER OF KERAFYRM RoF2 [EXP + / loot +] [Solo / group / raid]",
               "shortname" : "AkkasPEQInstaller",
               "tcp" : {
                    "ip" : "127.0.0.1",
                    "port" : "9000",
                    "telnet" : "disable"
               }
          },
          "zones" : {
               "defaultstatus" : "0",
               "ports" : {
                    "high" : "7500",
                    "low" : "7000"
               }
          }
     }
}
Reply With Quote
  #5  
Old 04-22-2019, 09:18 AM
Dryamzord01
Hill Giant
 
Join Date: Jul 2018
Posts: 161
Default mmmmmm

n zones, I had it in 7400, and I see that what you leave me in 7500, will be the solution? why people when they enter the server, I see who is connected and the name comes out but their race and zone unknown and disconnected
Reply With Quote
  #6  
Old 04-22-2019, 09:24 AM
Dryamzord01
Hill Giant
 
Join Date: Jul 2018
Posts: 161
Smile

Yes, I play on the same PC that I use the server, the long and short names match the database, and I just put the eqemu.config as you just left it, in login.ini what is it? 127.0.0. ???
Reply With Quote
  #7  
Old 04-22-2019, 09:36 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Quote:
Originally Posted by Dryamzord01 View Post
Yes, I play on the same PC that I use the server, the long and short names match the database, and I just put the eqemu.config as you just left it, in login.ini what is it? 127.0.0. ???
This is how your login.ini should look.

Code:
[database]
host = 127.0.0.1
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 = 127.0.0.
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 = tblLoginServerAccounts
world_registration_table = tblWorldServerRegistration
world_admin_registration_table = tblServerAdminRegistration
world_server_type_table = tblServerListType
Reply With Quote
  #8  
Old 04-22-2019, 09:42 AM
Dryamzord01
Hill Giant
 
Join Date: Jul 2018
Posts: 161
Red face please friend :D thanks you

Can you try to enter my server and create a character and see if you can enter and zone? please
Reply With Quote
  #9  
Old 04-22-2019, 09:47 AM
Dryamzord01
Hill Giant
 
Join Date: Jul 2018
Posts: 161
Unhappy ops.... :(

for what I see ..... you can not access with the character either: (... I do not understand it .....
Reply With Quote
  #10  
Old 04-22-2019, 09:51 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Got this error: Failed to connect to zoneserver (2.155.129.145, port 7001), result = 1, for MSG_ZONE_ADDRESS.
Reply With Quote
  #11  
Old 04-22-2019, 09:52 AM
Dryamzord01
Hill Giant
 
Join Date: Jul 2018
Posts: 161
Question

what does that mean? that I do not have port 7001 open?
Reply With Quote
  #12  
Old 04-22-2019, 09:53 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Change that low to 7100. These are what allows the zone servers to be launched. Numbers shouldn't matter, you just need enough zone launchers for every concurrent zone that boots up with a player in it.
"high" : "7500",
"low" : "7100"
Reply With Quote
  #13  
Old 04-22-2019, 09:55 AM
Dryamzord01
Hill Giant
 
Join Date: Jul 2018
Posts: 161
Question ???

in the eqemu.config ?? in 7000 and 7500, in 7000 I put 7100 and already?
Reply With Quote
  #14  
Old 04-22-2019, 10:00 AM
Dryamzord01
Hill Giant
 
Join Date: Jul 2018
Posts: 161
Cool :)

ya lo hice en eqemu config cambie el low el 7000 por 7100 , puede probar a ingresar ahora al server?
Reply With Quote
  #15  
Old 04-22-2019, 10:05 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

When you forward your ports (in router) are you forwarding them both TCP and UDP ?
5998, 5999, 7100-7500, 7778, 9000
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 12:52 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3