EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::General Support (https://www.eqemulator.org/forums/forumdisplay.php?f=598)
-   -   Please Help (https://www.eqemulator.org/forums/showthread.php?t=42414)

Dryamzord01 04-22-2019 02:29 AM

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

Huppy 04-22-2019 05:29 AM

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.

Dryamzord01 04-22-2019 08:12 AM

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?

Huppy 04-22-2019 09:11 AM

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"
              }
          }
    }
}


Dryamzord01 04-22-2019 09:18 AM

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

Dryamzord01 04-22-2019 09:24 AM

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. ???

Huppy 04-22-2019 09:36 AM

Quote:

Originally Posted by Dryamzord01 (Post 262214)
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


Dryamzord01 04-22-2019 09:42 AM

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

Dryamzord01 04-22-2019 09:47 AM

ops.... :(
 
for what I see ..... you can not access with the character either: (... I do not understand it .....

Huppy 04-22-2019 09:51 AM

Got this error: Failed to connect to zoneserver (2.155.129.145, port 7001), result = 1, for MSG_ZONE_ADDRESS.

Dryamzord01 04-22-2019 09:52 AM

what does that mean? that I do not have port 7001 open?

Huppy 04-22-2019 09:53 AM

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"

Dryamzord01 04-22-2019 09:55 AM

???
 
in the eqemu.config ?? in 7000 and 7500, in 7000 I put 7100 and already?

Dryamzord01 04-22-2019 10:00 AM

:)
 
ya lo hice en eqemu config cambie el low el 7000 por 7100 , puede probar a ingresar ahora al server?

Huppy 04-22-2019 10:05 AM

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


All times are GMT -4. The time now is 07:27 AM.

Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.