EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Support::Windows Servers (https://www.eqemulator.org/forums/forumdisplay.php?f=587)
-   -   problems with minilogin on eqemu 0.6.6... (https://www.eqemulator.org/forums/showthread.php?t=20309)

Arex 04-12-2006 08:51 AM

problems with minilogin on eqemu 0.6.6...
 
Hi guys, i am having a lot of problems for set up my eqemu server for use minilogin IP, i only cant pass of login screen on my server. I have the correct client version, i have minilogin_ip field to 127.0.0.1 on my account, i have the variable ServerType set to Minilogin, and i have the eqhost.txt file with Host=localhost:5999, and it is my xml config file..

<?xml version="1.0">
<server>
<world>
<shortname>Norrath</shortname>
<longname>World of Norrath</longname>

<!-- Only specify these two if you really think you need to. (read: You don't) -->
<address>localhost</address>
<localaddress>127.0.0.1</localaddress>

<!-- Loginserver information. Defaults shown -->
<loginserver>
<host>localhost</host>
<port>5999</port>
<account></account>
<password></password>
</loginserver>

<!-- Server status. Default is unlocked -->
<!--<locked/>-->
<!-- <unlocked/> -->

<!-- Sets the ip/port for the tcp connections. Both zones and console (if enabled). Defaults are shown -->
<tcp ip="localhost" port="9000" telnet="disable"/>

<!-- Sets the shared key used by zone/launcher to connect to world -->
<key>El mundo de Norrath esta aqui</key>

<!-- Enable and set the port for the HTTP service. Defaults are shown -->
<http port="9080" enabled="false" mimefile="mime.types" />
</world>

<!-- Chatserver (channels) information. Defaults shown -->
<chatserver>
<host>localhost</host>
<port>7778</port>
</chatserver>

<!-- Mailserver (in-game mail) information. Defaults shown -->
<mailserver>
<host>localhost</host>
<port>7779</port>
</mailserver>

<zones>
<defaultstatus>20</defaultstatus>

<!-- Sets port range for world to use to auto configure zones -->
<ports low="7000" high="7100"/>
</zones>

<!-- Database configuration, replaces db.ini. Defaults shown -->
<database>
<host>localhost</host>
<port>3306</port>
<username>xxxxx</username>
<password>xxxxxxxx</password>
<db>eq</db>
</database>

<!-- Launcher Configuration -->
<launcher>
<!-- <logprefix>logs/zone-</logprefix> -->
<!-- <logsuffix>.log</logsuffix> -->
<!-- <exe>zone.exe or ./zone</exe> -->
<!-- <timers restart="10000" reterminate="10000"> -->
</launcher>

<!-- File locations. Defaults shown -->
<files>
<!-- <spells>spells_us.txt</spells> -->
<!-- <opcodes>opcodes.conf</opcodes> -->
<!-- <logsettings>log.ini</logsettings> -->
<!-- <eqtime>eqtime.cfg</eqtime> -->
</files>
<!-- Directory locations. Defaults shown -->
<directories>
<!-- <maps>Maps</maps> -->
<!-- <quests>quests</quests> -->
<!-- <plugins>plugins</plugins> -->
</directories>
</server>

I dont get any error running minilogin.exe, world.exe, and zone.exe, world get connected to minilogin.exe and all looks ok, but i cant logging, any idea would be apreciated.

Thank you on advance..

Arex 04-12-2006 10:58 AM

I already fix it, i only had to add loginserver.ini, i was thinking that i neednt loginserver.ini since new .xml conf

tallerin 04-12-2006 01:01 PM

yea to use minilogin you do still need the login.ini. All you need to have in it though is

[LoginConfig]
ServerMode=minilogin
ServerPort=5999

the rest of the stuff with in the login.ini is in the new xml file.
Minilogin still looks for the the login config info within the login.ini file and needs it to load the opcodes so you can connect via minilogin.

Koshoji 04-15-2006 07:51 AM

I am also having issues getting this to work. I keep getting the following error:


[Debug] Starting Log: logs/eqemu_debug_5916.log
[Debug] [LAUNCHER__INIT] Loading server configuration..
[Debug] [NET__WORLD] WorldConnection connect: Connecting to the server 127.0.0.1
:9000 failed: TCPConnection::Connect(): connect() failed. Error: 10061
[Debug] [LAUNCHER__ERROR] worldserver.Connect() FAILED! Will retry.
[Debug] [LAUNCHER__INIT] Starting main loop...






I searched for that error number but nothing turned up for it.
Any ideas on where to look for solutions? I've poured over all of the .ini files and the new .xml file and as far as I can see everything is fine. All previous versions I have been able to get up and running. It's not a client issue, that part is fine. This is before even starting the client.


I know practically nothing about TCP stuff so I don't know where I should begin. Thanks in advance for any tips, hints or clues.

Arex 04-16-2006 11:10 AM

i think that u problem could to be that u need use it on u eqemuconfig.xml file...


<!-- Only specify these two if you really think you need to. (read: You don't) -->
<address>external_ip or internal ip (or 127.0.0.1 for only play u self)</address>
<localaddress>localhost</localaddress>

Koshoji 04-16-2006 12:04 PM

Thanks Arex for your reply.

Actually I had 127.0.0.1 in both address fields but tried changing the second one to localhost (the same thing, right?) and it just did the same thing as before. I'll copy my entire config file below:


<?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>127.0.0.1</address>
<localaddress>localhost</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>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>******</username>
<password>******</password>
<db>emusp3</db>
</database>
</server>



i know there has to be a simple solution to this. Others are getting it to work, so I must be overlooking something...

Thanks again for any ideas folks : )

kouhei 04-16-2006 02:37 PM

?? try
 
<address>127.0.0.1</address>
<localaddress>127.0.0.1</localaddress>

<!-- Loginserver information. -->
<loginserver>
<host>localhost</host>




Try that above and see it that works

Koshoji 04-16-2006 06:44 PM

Hi Kohei,

Na That didn't work either. No matter what changes I make to the .ini or .xml files the same error keeps comming up. I don't know what else I could tweak to get it to do something different. In the past I've always been able to figure these things out so I'm starting to get a little miffed here lol. I'll keep trying. Might start over from scratch again tomorrow.
Thanks


All times are GMT -4. The time now is 07:35 AM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.