Hey all. I would like to preface this by saying that I have been pouring over the forums for the past two days, trying to follow the guide exactly to create my EqEmu server. I feel like I am very close, but I am running into a few difficulties.
When I click on my Start.bat file to start my server, the World.exe application shuts down after about 15 seconds. I checked the log and got this:
Quote:
---------------------------------------------
[11.30. - 14:10:45] Starting Log: logs/eqemu_error_world_5780.log
[11.30. - 14:10:45] Failed to connect to database: Error: #1045: Access denied for user 'root'@'localhost' (using password: YES)
---------------------------------------------
[11.30. - 15:43:48] Starting Log: logs/eqemu_error_world_5780.log
[11.30. - 15:43:48] Error in LoadRules query SELECT ruleset_id FROM rule_sets WHERE name='default': #1146: Table 'peq.rule_sets' doesn't exist
[11.30. - 15:43:48] Could not load EQTime file eqtime.cfg
[11.30. - 15:43:48] WorldDatabase::GetLauncherList: #1146: Table 'peq.launcher' doesn't exist
|
and also this:
Quote:
---------------------------------------------
[11.30. - 14:10:45] Starting Log: logs/eqemu_debug_world_5780.log
[11.30. - 14:10:45] [WORLD__INIT] Loading server configuration..
[11.30. - 14:10:45] [WORLD__INIT] Log settings loaded from log.ini
[11.30. - 14:10:45] [WORLD__INIT] CURRENT_WORLD_VERSION:EQEmulator 0.8.0
[11.30. - 14:10:45] [WORLD__INIT] Connecting to MySQL...
[11.30. - 14:10:45] [WORLD__INIT_ERR] Cannot continue without a database connection.
---------------------------------------------
[11.30. - 15:43:39] Starting Log: logs/eqemu_debug_world_5780.log
[11.30. - 15:43:39] [WORLD__INIT] Loading server configuration..
[11.30. - 15:43:39] [WORLD__INIT] Log settings loaded from log.ini
[11.30. - 15:43:39] [WORLD__INIT] CURRENT_WORLD_VERSION:EQEmulator 0.8.0
[11.30. - 15:43:39] [WORLD__INIT] Connecting to MySQL...
[11.30. - 15:43:39] [WORLD__INIT] Starting HTTP world service...
[11.30. - 15:43:39] [WORLD__HTTP] Loaded mime types from mime.types
[11.30. - 15:43:39] [WORLD__INIT] Loading variables..
[11.30. - 15:43:39] [WORLD__INIT] Loading zones..
[11.30. - 15:43:39] [WORLD__INIT] Clearing groups..
[11.30. - 15:43:39] [WORLD__INIT] Clearing raids..
[11.30. - 15:43:39] [WORLD__INIT] Loading items..
[11.30. - 15:43:48] [WORLD__INIT] Loading guilds..
[11.30. - 15:43:48] [GUILDS__ERROR] Error loading guilds 'SELECT id, name, leader, minstatus, motd, motd_setter FROM guilds': #1146: Table 'peq.guilds' doesn't exist
[11.30. - 15:43:48] [RULES__ERROR] Failed to find ruleset 'default' for load operation. Canceling.
[11.30. - 15:43:48] [WORLD__INIT] No rule set configured, using default rules
[11.30. - 15:43:48] [WORLD__INIT] Clearing temporary merchant lists..
[11.30. - 15:43:48] [WORLD__INIT] Loading EQ time of day..
[11.30. - 15:43:48] [WORLD__INIT_ERR] Unable to load eqtime.cfg
[11.30. - 15:43:48] [WORLD__INIT] Loading launcher list..
[11.30. - 15:43:48] [WORLD__INIT] Reboot zone modes OFF
[11.30. - 15:43:48] [WORLD__INIT] Deleted -1 stale player corpses from database
[11.30. - 15:43:48] [WORLD__INIT] Deleted -1 stale player backups from database
[11.30. - 15:43:48] [WORLD__INIT] Purging expired instances
[11.30. - 15:43:48] [WORLD__INIT] Zone (TCP) listener started.
[11.30. - 15:43:48] [WORLD__INIT] Client (UDP) listener started.
[11.30. - 15:43:49] [NET__IDENTIFY] Registered patch 6.2
[11.30. - 15:43:49] [NET__IDENTIFY] Registered patch Titanium
[11.30. - 15:43:49] [NET__IDENTIFY] Registered patch SoF
[11.30. - 15:43:49] [WORLD__LS] Connecting to login server...
[11.30. - 15:43:49] [WORLD__LS] Connected to Loginserver: localhost:3306
|
I searched these problems on the forums and the most common solution I found was to make sure my DB files were properly downloaded and sourced...but as far as I can tell, I downloaded and sourced the revision .sql file correctly (I even retried).
If it helps you to know, I am using Perl v. 5.8.9. I also gathered my DB/Maps/Quests etc files via Tortoise SVN.
Also, if it helps, here is my eqconfig log:
Quote:
<?xml version="1.0">
<server>
<world>
<shortname>Legions</shortname>
<longname>Legions</longname>
<!-- Only specify these two if you really think you need to. -->
<!--<address>Serving Machines IP</address>-->
<!--<localaddress>127.0.0.1</localaddress>-->
<!-- Loginserver information. -->
<loginserver>
<host>localhost</host>
<port>3306</port>
<account>root</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>localhost</host>
<port>3306</port>
<username>root</username>
<password>*******</password>
<db>peq</db>
</database>
</server>
|
Can anyone lead me in the right direction towards fixing these errors? I do apologize if this is somewhere in the forums that I did not see, but I have been pretty much self-dependent up until this point (thanks to the clear cut guide). Thanks in advance!