Log in

View Full Version : personal server world.exe start errors??


madison1
06-28-2008, 05:05 PM
I am new to this....I followed all the steps in the guide and got this when I started world.exe...l am attempting to use angelox database....thanks for any suggestions

Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\Kev>cd\

C:\>cd\eqemu2

C:\eqemu2>world.exe
[Debug] Starting Log: logs/eqemu_debug_world_1760.log
[Debug] [WORLD__INIT] Loading server configuration..
[Debug] [WORLD__INIT] Log settings loaded from log.ini
[Debug] [WORLD__INIT] CURRENT_WORLD_VERSION:EQEMu 0.7.0
[Debug] [WORLD__INIT] Connecting to MySQL...
[Error] Starting Log: logs/eqemu_error_world_1760.log
[Error] Failed to connect to database: Error: #1045: Access denied for user 'eq'
@'localhost' (using password: YES)
[Debug] [WORLD__INIT_ERR] Cannot continue without a database connection.




here is my eq_emu_config file info

<!-- Loginserver information. -->
<loginserver>
<host>eqemulator.net</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>localhost</host>
<port>3306</port>
<username>root</username>
<password>sampson1</password>
<db>ax_classic</db>
</database>
</server>


and here is my .bat start up file info

@echo off
start world.exe
cls
echo wait for world to finish loading... Press enter when done.
pause
start eqlaunch.exe zones
exit

Derision
06-28-2008, 05:17 PM
I am new to this....I followed all the steps in the guide and got this when I started world.exe...l am attempting to use angelox database....thanks for any suggestions

[Error] Failed to connect to database: Error: #1045: Access denied for user 'eq'
@'localhost' (using password: YES)

here is my eq_emu_config file info

<username>root</username>


It would appear that EQEmu is not using the eqemu_config.xml file that you think it is, since you get an access denied error for user 'eq', when the xml file you posted specifies a user name of 'root'.

Launch a command prompt:


c:

cd \eqemu2

notepad eqemu_config.xml


Check that the userid and password are correct in that file.

madison1
06-28-2008, 06:11 PM
that part help me out.....but now am getting this

[Debug] [RULES__CHANGE] Set rule Watermap:FishingLineLength to value 40.00000000
00000
[Debug] [WORLD__INIT] Loaded default rule set 'default'
[Debug] [WORLD__INIT] Loading EQ time of day..
[Error] Starting Log: logs/eqemu_error_world_5732.log
[Error] Could not load EQTime file eqtime.cfg
[Debug] [WORLD__INIT_ERR] Unable to load eqtime.cfg
[Debug] [WORLD__INIT] Loading launcher list..
[Debug] [WORLD__INIT] Reboot zone modes ON
[Debug] [WORLD__INIT] Deleted 0 stale player corpses from database
[Debug] [WORLD__INIT] Deleted 0 stale player backups from database
[Debug] [WORLD__INIT] Zone (TCP) listener started.
[Debug] [WORLD__INIT_ERR] Failed to start client (UDP) listener (port 9000)

C:\eqemu2>


thanks again for any info