Problem Logging my Character in: Client Disconnected (not active in process)
Hey all.
First just want to say how cool this all is and how excited I am to be putting together my own server. Also, want to let you all know that I spend plenty of time trying to solve problems on my own before buggin someone else with them (I learn better that way) so any issue I post here will be after I've come to the end of my rope. That being said... I followed the install procedure (http://www.eqemulator.net/wiki/wikka...=ws70845mysql5) to the letter. I'll note now that I'm using MySQL version 5.0.27 instead of 5.0.24. I don't believe this should cause a problem but you never know... There were a couple of issues I had to fix after this but I'm now at a point where I can select my server from the list and get into the character creation screen. When I click Enter World, the client pauses (as normal when entering the world) but then I get a black screen that says Server Not Responding, followed by on that says You Have Been Disconnected. On the world server, I'm getting the following log output: Code:
[Debug] Starting Log: logs/eqemu_debug_world_1772.log Code:
LoginServer.ini read. I've searched for this problem in the forums and haven't had much luck finding my specific problem, although I've found a bunch that look similar and are promising. I'll continue to look through these but if anyone knows the answer I'd really appreciate the help. Thanks all. |
I also use MySQL 5.0.27 and installed from that same wiki setup.
http://www.eqemulator.net/forums/showthread.php?t=22354 |
Quote:
Thanks. |
The 'not active ...' part is typical when people zone in to places.
What it sounds like is you are timing out before you can actually get the zone loaded. You need to increase your timeout delay in your rules set. Try loading this into your sql: http://www.eqemulator.net/forums/sho...highlight=rule and see if it helps. If it still doent allow it, try changing the Code:
INSERT INTO rule_values |
Very cool! I'll give this a shot as soon as I get back in front of my server. Just for my own benefit (so I can learn more) what about the log output indicates a zone timeout to you? I never would have even thought that. I was convinced that there was a compatability issue in the format of my db tables vs. my world server.
Thanks again and I'll let you know if this solves it. Josh |
Still no joy...
Well, I did as you said (increasing the number to 120000 in both cases) and I'm still getting the same result as stated above. One interesting thing is that it seems never to time out from the world.exe side. I get the "Client disconnected (not active in process)" message literally right after I click Enter World. I'm sure I could give better detail if I was more familiar with the system but for now it seems like it's not even trying to time out; as if I'm being outright booted.
Based on this Default Ruleset I just added, it seems a little clear to me that there are a few steps that the server setup tutorials don't cover. Is there a comprehensive list of things that I need to do after I've completed the setup tutorial - like a list of threads I need to read through and execute? Again, thank you all for your help. It is most appreciated. Josh |
In regards to it being or not being same problem, you have not posted your loginserver.ini file or your eqemu_config.xml file or your eqhosts.txt file so hard to tell for sure.
Looking through your logs I see a lot of references to 127.0.0.1. These should not be there if you have the addresses configured to your real IP address instead of 127.0.0.1. The fact that your client is trying to connect from 192.168.0.4 and your server is responding on 127.0.0.1 means they cant see each other. So you pass through the gates to start the server, but you cant hear the responses and therefore get disconnected. |
Quote:
You're correct, I haven't done that. I apologize. I'll post those up when I get home from work and I'll also look into this 127.0.0.1 issue (makes sense to me). Appreciate the help very much! |
Okay, the only place I could find 127.0.0.1 was in my eqemu_config.xml file. It was the setting for localaddress. I tried setting it to 192.168.0.3 (my machine's real IP) and I couldn't even get to the server selection list from the client. I set it back to 127.0.0.1 and I could at least select my server and get to the character select screen. Here are all the conf files (please let me know if I forgot anything):
eqemu_config.xml: Code:
<?xml version="1.0"> Code:
### --- This file tells world.exe what loginserver to connect to. Code:
[LoginServer] Thanks for your help. -Josh |
The configs look fine. The only other thing I could suggest is your database may not match the emu version. The link you mentioned from wiki gives a list of alterations to the database that must be done. If these have been done I have no other ideas.
|
Server startup isnt really my thing, I tend to do more with in-game things and let a friend of mine do the actual setup and hardware hassles. So I honestly cannot tell if you there are errors in the above posts without having to stare at it for an hour and check it against the wiki.
But, if everyone says what you have above is correct, try setting the zone you are attempting to enter to a Static state before ever attempting to load the character up. That way the zone is already up when you attempt to log in. ******************** edit: might want to make sure your worldname in loginserver.ini and long name in eqemu_config.xml is the same, just in case. I was checking this wiki page and saw that they were the same there. Not sure if it is required. |
If you are using a newer verserion of EQEmu than the wiki (say like you are using: EQEmu-0.7.0-965 instead of EQEmu-0.7.0-845) you need to apply all the required SQL as well. I didn't do this and kept being able to log in but just hung in mid air as the zone more or less crashed.
It was hard to decipher the crashes until I made one of the zones static and saw the errors a bit more clearly. This may not be your problem, but hopefully it'll help some! If you are going from 0.7.0-845 to 0.7.0-965 you'll want to apply these SQL statements: CREATE TABLE skill_caps ( skillID TINYINT UNSIGNED NOT NULL, class TINYINT UNSIGNED NOT NULL, level TINYINT UNSIGNED NOT NULL, cap MEDIUMINT UNSIGNED NOT NULL, PRIMARY KEY(skillID,class,level) ); ALTER TABLE `zone` ADD `cancombat` tinyint(4) NOT NULL default '1'; UPDATE `zone` SET `cancombat` = 0 WHERE short_name = 'nexus'; UPDATE `zone` SET `cancombat` = 0 WHERE short_name = 'poknowledge'; UPDATE `zone` SET `cancombat` = 0 WHERE short_name = 'potranquility'; ALTER TABLE `npc_types` ADD `see_hide` tinyint(4) NOT NULL default '0'; ALTER TABLE `npc_types` ADD `see_improved_hide` tinyint(4) NOT NULL default '0'; UPDATE `npc_types` SET `see_hide` = 1 WHERE see_invis = '1'; UPDATE `npc_types` SET `see_hide` = 1 WHERE see_invis_undead = '1'; |
I have been having this same problem on the test server I have been trying to get running. I am able to get in if I log in from the server running the EQEmu server, but not from any other PC on my local network. Also, other people are getting disconnected the same way after creating their character and trying to enter the world on my server.
I followed the same Wiki and am using the same version of MySQL. I was thinking the problem had to do with the Wiki guide, since it is specifically for Minilogin setups, not Stand Alones. I made sure to keep the line "ServerMode=StandAlone" from the loginserver.ini instead of changing it to "minilogin". But, other than that, I don't know what else may need to be changed to make the server work from the server list instead of minilogin. I have added most of the database entries listed above, but I will go through and make sure I got them all. Maybe I missed a couple. |
Say what kind of setup you have; all windowsXP Lan? are you useing a windowsXP firewall? if so, disable all software firewalls temporarly to make sure this is not the problem. If you are behind a router (routers have their own firewall), you don't need a software firewall anyway. here's a list of ports I clear on my shorewall when I run eqemu;
Quote:
|
I have tried opening up my firewalls completely and I still initially receive this error when ever I login in for the first time.
|
All times are GMT -4. The time now is 09:15 AM. |
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.