View Single Post
  #13  
Old 06-26-2011, 06:13 AM
Criimson
Hill Giant
 
Join Date: Sep 2006
Posts: 172
Default

So what ended up being the problem?
I am trying to set up a server and it all seems well except I am getting this exact error.

Thank you
Criimson

EDIT: I am trying to set up a local only server.

Here are my Setup files

login.ini
[database]
host = 192.168.2.1
port = 3306
db = peq
user = root
password = password
subsystem = MySQL

[options]
unregistered_allowed = TRUE
reject_duplicate_servers = FALSE
trace = TRUE
world_trace = FALSE
dump_packets_in = FALSE
dump_packets_out = FALSE
listen_port = 5998
local_network = 127.0.0.1

[security]
plugin = EQEmuAuthCrypto
mode = 5

[Titanium]
port = 5998
opcodes = login_opcodes.conf

[SoD]
port = 5999
opcodes = login_opcodes_sod.conf

[schema]
account_table = tblLoginServerAccounts
world_registration_table = tblWorldServerRegistration
world_admin_registration_table = tblServerAdminRegistration
world_server_type_table = tblServerListType

eqemu_config.xml

<?xml version="1.0"?>
<server>
<world>
<shortname>Criim</shortname>
<longname>Criimsons Playground</longname>

<!-- address has to be specified for minilogin to work -->
<address>localhost</address>
<localaddress>192.168.2.1</localaddress>

<!-- Loginserver information. -->
<loginserver>
<host>127.0.0.1</host>
<port>5999</port>
<account></account>
<password></password>
</loginserver>

<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>make up some random string of characters here</key>

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

<!-- Database configuration, replaces db.ini -->
<database>
<host>localhost</host>
<port>3306</port>
<username>root</username>
<password>password</password>
<db>peq</db>
</database>
</server>

What's weird is if in the login.ini I change "host = 192.168.2.1" to "host = 127.0.0.1" I get an additional error about character set #33 being invalid or something from mysql


ANyway any ideas?
Everything else seems to be working as it should.

Just the login server having a hiccup.
Reply With Quote