I've been trying to find the issue via looking at these forums for a while but I'm still having some trouble. My servers / some db tabes are for a specific branch of eqemu so i'm not following Akka's guide 100%.
Getting stuck logging in at "Logging in to the server. Please wait..." No trace hits for anything. All I care about is myself using this server, no one else needs to. Here's what my servers look like. 
http://imgur.com/a/lmg4u
Anything obvious I'm missing? (I'm aware there is an error in the zone server but I didn't think it was relevant as to why I wasn't getting anything at login.
	Quote:
	
	
		| 
			
				 
					Originally Posted by eqhost.txt
					
				 
				[LoginServer] 
Host=127.0.0.1:5998 
			
		 | 
	
	
 
	Quote:
	
	
		| 
			
				 
					Originally Posted by LoginServer.ini
					
				 
				[LoginServer] 
loginserver=127.0.0.1 
loginport=5998 
worldname=sod 
locked=false 
 
[ChatChannelServer] 
worldshortname=SoD25 
chataddress=162.144.195.183 
chatport=10234 
 
[WorldServer] 
Defaultstatus=0 
Unavailzone= 
 
[LoginConfig] 
ServerMode=Standalone 
ServerPort=6997 
UplinkAddress= 
UplinkPort= 
UplinkAccount= 
UplinkPassword= 
			
		 | 
	
	
 
	Quote:
	
	
		| 
			
				 
					Originally Posted by login.ini
					
				 
				[database] 
host = localhost 
port = 3306 
db = world 
user = <DBUSER> 
password = <DBPASSWORD> 
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 
			
		 | 
	
	
 
	Quote:
	
	
		
			
				eqemu_config.xml
	Code: 
	<?xml version="1.0">
<server>
        <database>
                <host>localhost</host>
                <port>3306</port>
                <username><DBUSER></username>
                <password><DBPASSWORD></password>
                <db>world</db>
        </database>
        <chatserver>
                <host>localhost</host>
                <port>10234</port>
        </chatserver>
        <mailserver>
                <host>localhost</host>
                <port>10234</port>
        </mailserver>
        <world>
                <shortname>sod</shortname>
                <longname>Shards of Dalaya</longname>
				<!-- <address>localhost</address>-->
                <localaddress>127.0.0.1</localaddress>
                <!-- Loginserver information.  Defaults shown -->
                <loginserver>
                        <host>127.0.0.1</host>
                        <port>5998</port>
                        <account><DBUSER></account>
                        <password><DBPASSWORD></password>
                        <index>1</index>
                </loginserver>
                <locked/>
                <tcp ip="localhost" port="9000" telnet="disable"/>
        </world>
        <zones>
            <!-- The defaultstatus is what status the new toons will have on your server -->
            <defaultstatus>10</defaultstatus>
            <!-- Sets port range for world to use to auto configure zones DO NOT EDIT RIGHT NOW-->
            <ports low="7000" high="7100"/>
        </zones>
        <launcher>
                <timers initial="5000" interval="5" />
        </launcher>
</server>
 
			
		 |