Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Windows Servers

Support::Windows Servers Support forum for Windows EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 01-01-2010, 05:36 PM
Skathix
Fire Beetle
 
Join Date: Dec 2009
Location: Beebe
Posts: 23
Default Not able to Login

Cannot Login to my own server, it is stuck at loading please wait, I am using Rev 1052 or 53, I am using Titanium and really need to get this set up so it can be used over a network for my mother and her friends. Please help me, I followed the wiki and am still having these problems. Thank you ahead of time
Reply With Quote
  #2  
Old 01-01-2010, 05:43 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

Make sure you have the proper port ranges forwarded on your router. The FAQ in my sig might be of some assistance.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
  #3  
Old 01-01-2010, 06:02 PM
pfyon's Avatar
pfyon
Discordant
 
Join Date: Mar 2009
Location: Ottawa
Posts: 495
Default

Any errors in your logs?
Reply With Quote
  #4  
Old 01-01-2010, 06:08 PM
jkennedy
Hill Giant
 
Join Date: Dec 2009
Posts: 175
Default

make sure you have all your server files when i had my ports wrong it let me log ion just not anyone else
Reply With Quote
  #5  
Old 01-01-2010, 06:37 PM
Skathix
Fire Beetle
 
Join Date: Dec 2009
Location: Beebe
Posts: 23
Default

Checking all those things, I don't think that my ports have anything to do with it. I think I may know whats wrong, at first, I opened eq.exe or whatever it is and it downloaded the sony launchpad thing, will that mess anything up?
Reply With Quote
  #6  
Old 01-01-2010, 06:42 PM
Skathix
Fire Beetle
 
Join Date: Dec 2009
Location: Beebe
Posts: 23
Default

Here is something, World.exe keeps crashing, I'm running Windows 7 Ultimate
Reply With Quote
  #7  
Old 01-01-2010, 06:46 PM
Skathix
Fire Beetle
 
Join Date: Dec 2009
Location: Beebe
Posts: 23
Default

World.exe crashes when I try to connect to it, I am connecting from the same computer it is on, is that A problem?
Reply With Quote
  #8  
Old 01-01-2010, 07:39 PM
jkennedy
Hill Giant
 
Join Date: Dec 2009
Posts: 175
Default

yes thats a problem go to u logs and show us the log for world.exe
Reply With Quote
  #9  
Old 01-02-2010, 12:40 PM
Skathix
Fire Beetle
 
Join Date: Dec 2009
Location: Beebe
Posts: 23
Default

Where do I find the log, I see several logs but they all just say

---------------------------------------------
[12.28. - 15:40:19] Starting Log: logs/eqemu_error_world_4044.log
[12.28. - 15:40:19] Failed to connect to database: Error: #1045: Access denied for user 'eq'@'localhost' (using password: YES)

But it says that as soon as I run it and then it goes through as soon as there is a connection available
Reply With Quote
  #10  
Old 01-02-2010, 01:03 PM
jkennedy
Hill Giant
 
Join Date: Dec 2009
Posts: 175
Default

hey post your eqemu_config.xml file but put *'s in for ur password
Reply With Quote
  #11  
Old 01-02-2010, 10:16 PM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

Quote:
Originally Posted by Skathix View Post
Where do I find the log, I see several logs but they all just say

---------------------------------------------
[12.28. - 15:40:19] Starting Log: logs/eqemu_error_world_4044.log
[12.28. - 15:40:19] Failed to connect to database: Error: #1045: Access denied for user 'eq'@'localhost' (using password: YES)

But it says that as soon as I run it and then it goes through as soon as there is a connection available
Your server will never work until you get this problem resolved. It should be killing the world.exe when this error occurs. You need to make sure you have your database login info setup properly. Have you created an account for "eq", which is the username you are trying to use in the config? If not, you need to create one with the appropriate rights to connect to your database.

You can test the connection pretty easily by trying to connect to MySQL with that login information. At your command prompt, just type:

mysql -u eq -p

Then hit enter and put in your password when prompted. If you can't log in that way, then your server isn't going to be able to log in with that same info. You can also test by putting your mysql root login info into your config and see if that helps. It is not recommended to permanently run with your server connecting as root, but it doesn't hurt just to test it out. If that does work, then you just need to make a new account in mysql for the eq username.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
  #12  
Old 01-03-2010, 01:09 AM
Skathix
Fire Beetle
 
Join Date: Dec 2009
Location: Beebe
Posts: 23
Default

How do you make an account in Mysql? I am using Navicat to edit my database.
Reply With Quote
  #13  
Old 01-03-2010, 03:08 AM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

The directions here should work for you to create a new account:

http://www.eqemulator.net/wiki/wikka...LRemoteAccount
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote
  #14  
Old 01-02-2010, 03:09 PM
Skathix
Fire Beetle
 
Join Date: Dec 2009
Location: Beebe
Posts: 23
Default

<server>
<world>
<shortname>EclArg</shortname>
<longname>Eclipsing Argos</longname>

<!-- Only specify these two if you really think you need to. -->
<address>test.com</address>
<localaddress>192.168.0.8</localaddress>
<!-- Loginserver information. -->
<loginserver>
<host>localhost</host>
<port>5998</port>
<account></account>
<password></password>
</loginserver>

<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>some long random string</key>

<!-- Enable and set the port for the HTTP service. -->
<http port="9080" enabled="true" mimefile="mime.types" />
</world>

<!-- Database configuration, replaces db.ini. -->
<database>
<host>192.168.0.8</host>
<port>3306</port>
<username>root</username>
<password>******</password>
<db>peq</db>
</database>
</server>
Reply With Quote
  #15  
Old 01-02-2010, 03:13 PM
Skathix
Fire Beetle
 
Join Date: Dec 2009
Location: Beebe
Posts: 23
Default

I just want to be able to run my server on the home network.
Reply With Quote
Reply


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 09:01 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 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3