PDA

View Full Version : Oh the stress ! (minilogin)


warhawk
03-13-2008, 01:49 PM
Hi all

Thanks to this great site and awesomely talented people i have managed to get my own server up and running.
However, i am tearing my hair out trying to get minilogin working. I get to the screen saying

loginserver.ini read
[status] loading opcodes...
Server mode:minilogin
login server listening on port:5999


This is where it goes wrong, i press a key and the dos window flashes up with an error and closes (so fast i cant read it).

Any ideas?


I have read countless posts here, and triedf everything with no success.

my loginserver.ini

### --- This file tells world.exe what loginserver to connect to.
### --- Leave the account and password field BLANK.

### --- Public Login is un-supported as is LAN playing. We reccomend using the EQEmu.net Loginserver ALWAYS.

### --- NOTE: Starting 6-1-2002, you can no longer use the word "Server" in worldname.
### --- NOTE2: the word "Server" is added to each server automaticly.

# READ README.TXT

[LoginServer]
loginserver=192.168.1.50

loginport=5999
worldname=banzai
worldaddress=192.168.1.50
locked=false
account=
password=

[WorldServer]
Defaultstatus=
Unavailzone=

[ChatChannelServer]
worldshortname=
chataddress=
chatport=

[LoginConfig]
ServerMode=minilogin
ServerPort=5999

my eqqmu_config.xml

<?xml version="1.0">
<server>
<world>
<shortname>banzai</shortname>
<longname>banzai</longname>

<!-- Only specify these two if you really think you need to. -->
<--<address>192.168.1.50</address>-->
<--<localaddress>127.0.0.1</localaddress>-->

<!-- Loginserver information. -->
<loginserver>
<host>192.168.1.50</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" />
</world>

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


start.bat

@echo off

start minilogin.exe
Echo Please wait for Minilogin to fully boot up.
pause

start world.exe
cls
Echo Wait for World to finish loading... Press Enter when done.
pause
start eqlaunch.exe zone
exit




Any help would be awesome.:-D

Warhawk

Nothingman0
03-13-2008, 02:09 PM
Check the logs folder in your eqemu folder. There should be some error logs that might help. Also, I think you will need to remove the <-- and --> tags so that your address and local address look like this.

<address>192.168.1.50</address>
<localaddress>127.0.0.1</localaddress>

I doubt that will fix the problem you are having but you'll need to do it eventually. Post the error logs if they aren't clueing you in on anything.

warhawk
03-13-2008, 10:43 PM
Thats it !! :)

Thanks a million Nothingman0.