Alright, so I decided to set up a personal server just for me to mess around with. I followed the setup guide for 0.7.0 using mySQL 4.0.23. I get everything running, but when I try to log into my server, it boots me to login.
Here is my log file:
Code:
---------------------------------------------
[03.25. - 14:13:09] Starting Log: logs/eqemu_debug_4028.log
[03.25. - 14:13:09] [LAUNCHER__INIT] Loading server configuration..
[03.25. - 14:13:09] [LAUNCHER__INIT] Starting main loop...
[03.25. - 14:13:09] [NET__WORLD] Connected to World: 127.0.0.1:9000
[03.25. - 14:13:14] [LAUNCHER__WORLD] World told us to start zone dynamic_01.
[03.25. - 14:13:14] [LAUNCHER__WORLD] World told us to start zone dynamic_02.
[03.25. - 14:13:14] [LAUNCHER__WORLD] World told us to start zone dynamic_03.
[03.25. - 14:13:14] [LAUNCHER__WORLD] World told us to start zone dynamic_04.
[03.25. - 14:13:14] [LAUNCHER__WORLD] World told us to start zone dynamic_05.
[03.25. - 14:13:14] [LAUNCHER__ERROR] World told us to start zone dynamic_01, but it is already running.
[03.25. - 14:13:14] [LAUNCHER__ERROR] World told us to start zone dynamic_02, but it is already running.
[03.25. - 14:13:14] [LAUNCHER__ERROR] World told us to start zone dynamic_03, but it is already running.
[03.25. - 14:13:14] [LAUNCHER__ERROR] World told us to start zone dynamic_04, but it is already running.
[03.25. - 14:13:14] [LAUNCHER__ERROR] World told us to start zone dynamic_05, but it is already running.
[03.25. - 14:13:14] [LAUNCHER__STATUS] Starting zone dynamic_01
[03.25. - 14:13:14] [LAUNCHER__STATUS] Zone dynamic_01 has been started.
[03.25. - 14:13:14] [LAUNCHER__STATUS] Waiting 20000 milliseconds before booting the second zone.
[03.25. - 14:13:36] [LAUNCHER__STATUS] Starting zone dynamic_02
[03.25. - 14:13:36] [LAUNCHER__STATUS] Zone dynamic_02 has been started.
[03.25. - 14:13:36] [LAUNCHER__STATUS] Waiting 2000 milliseconds before booting the next zone.
[03.25. - 14:13:40] [LAUNCHER__STATUS] Starting zone dynamic_03
[03.25. - 14:13:40] [LAUNCHER__STATUS] Zone dynamic_03 has been started.
[03.25. - 14:13:40] [LAUNCHER__STATUS] Waiting 2000 milliseconds before booting the next zone.
[03.25. - 14:13:44] [LAUNCHER__STATUS] Starting zone dynamic_04
[03.25. - 14:13:44] [LAUNCHER__STATUS] Zone dynamic_04 has been started.
[03.25. - 14:13:44] [LAUNCHER__STATUS] Waiting 2000 milliseconds before booting the next zone.
[03.25. - 14:13:48] [LAUNCHER__STATUS] Starting zone dynamic_05
[03.25. - 14:13:48] [LAUNCHER__STATUS] Zone dynamic_05 has been started.
[03.25. - 14:13:48] [LAUNCHER__STATUS] Waiting 2000 milliseconds before booting the next zone.
I have a related problem in that my client says that my server is locked. However, I read that if zones aren't loaded it will still say that the server is locked, even if it isn't.
Here is my eqemu_config.xml:
Code:
<?xml version="1.0">
<server>
<world>
<shortname>minilogin</shortname>
<longname>My Minilogin</longname>
<!-- Only specify these two if you really think you need to. -->
<address>localhost</address>
<localaddress>localhost</localaddress>
<!-- Loginserver information. -->
<loginserver>
<host>localhost</host>
<port>5999</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" />
<unlocked/>
</world>
<!-- Database configuration, replaces db.ini. -->
<database>
<host>localhost</host>
<port>3306</port>
<username>eq</username>
<password>eq</password>
<db>eq</db>
</database>
</server>
I've tried replacing all the localhosts with my computer's ip on the network (192.168.1.150), however that just results in my server not showing up on the server list.
If you can't help me, its cool. Like I said, I was just wanting to mess around with it.