Go Back   EQEmulator Home > EQEmulator Forums > Archives > Archive::General > Archive::General Discussion

Archive::General Discussion Archive area for General Discussion's posts that were moved here after an inactivity period of 90 days.

Reply
 
Thread Tools Display Modes
  #1  
Old 02-13-2003, 09:17 PM
eltharin
Fire Beetle
 
Join Date: Jul 2002
Posts: 24
Default problem with minilogin

hello,
considering I cannot creer a character on eqemu, i
have decided to make my own minilogin server but i followed has
the letter explanation on the readme of the site, but that does
not go veiled my different configuration.

boot5zones.bat:

REM: ****Read this first!!!****

REM: This file requires your real IP in the place of "YourIP" when you are connecting
REM: To the EQEmu Loginserver.

REM: When you are using minilogin, Replace all IP Addresses to say 127.0.0.1

REM: If you still get errors try using localhost instead of 127.0.0.1

REM:--------------Start-----------------------
@echo off

if NOT exist spells_en.txt goto NOSPELL

start zone . 127.0.0.1 7995 127.0.0.1
start zone . 127.0.0.1 7996 127.0.0.1
start zone . 127.0.0.1 7997 127.0.0.1
start zone . 127.0.0.1 7998 127.0.0.1
start zone . 127.0.0.1 7999 127.0.0.1
exit
cls

:NOSPELL
echo You did not copy the spells_en.txt from your everquest directory to this one. Please do so or zones will crash on startup.
PAUSE

REM:---------------END------------------------


miniloginaccount.ini

yourlanip1 user1 password1
yourlanip2 user2 password2
yourlanip3 user3 password3
yourlanip4 user4 password4

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=localhost
loginserver2=localhost
loginport=5999
loginport2=5999
worldname=CHRISTOPHE
locked=false
account=
password=
worldaddress=localhost

[WorldServer]
Defaultstatus=
Unavailzone=

[LoginConfig]
ServerMode=Standalone
ServerPort=5999
UplinkAddress=
UplinkPort=
UplinkAccount=
UplinkPassword=

my error messages are

minilogin.exe:

error in miniloginconfig.ini ligne#1 ligne 2 ligne 3 ligne 4

word.exe:

error loginserver::connect: resolving IP address: 'unable to get the host name ERROR: 11001

connected to loginserver: localhost:5999

someone can help me?
thank
and
__________________
eltharin
frenchman
eltharindanselune@lycos.fr
Reply With Quote
  #2  
Old 02-13-2003, 09:31 PM
Fox
Fire Beetle
 
Join Date: Nov 2002
Location: Svenneland
Posts: 18
Default

Well I would guess this is your problem....
miniloginaccount.ini

yourlanip1 user1 password1
yourlanip2 user2 password2
yourlanip3 user3 password3
yourlanip4 user4 password4

change those lines to something like this
127.0.0.1 eqemu eqemu
Reply With Quote
  #3  
Old 02-13-2003, 09:38 PM
eltharin
Fire Beetle
 
Join Date: Jul 2002
Posts: 24
Default

thank for your help
now i have this error message

Failed to connect to database: Error: Can't connect to MySQL server on 'localhos
t' (10061)
EQEMu 0.4.1 Spekkio
Error in GetVariable query 'SELECT value FROM variables WHERE varname like 'hold
zones'' #2006: MySQL server has gone away
Loading zone names & items...
Error in LoadZoneNames query 'SELECT MAX(zoneidnumber) FROM zone' #2006: MySQL s
erver has gone away
EMuShareMem.dll loaded.
Error in GetItemsCount query 'SELECT MAX(id), count(*) FROM items' #2006: MySQL
server has gone away
Error: Database::LoadItems() (sharemem): GetItemsCount() returned -1
...done.
LoginServer.ini read.
Loading guild ranks...Error in LoadGuilds query 'SELECT id, eqid, name, leader,
rank0title, rank1, rank1title, rank2, rank2title, rank3, rank3title, rank4, rank
4title, rank5, rank5title from guilds' #2006: MySQL server has gone away
done.
Loading EQ time of day...Reading time file failed, bytes read: 0
failed.
Abort/retry/cancel?
World server listening on: port 9000
Error: LoginServer::Connect: Resolving IP address: 'Unable to get the host name.
Error: 11001'
__________________
eltharin
frenchman
eltharindanselune@lycos.fr
Reply With Quote
  #4  
Old 02-13-2003, 10:00 PM
Fox
Fire Beetle
 
Join Date: Nov 2002
Location: Svenneland
Posts: 18
Default

hmm ok, well it looks like you have something wrong with your login to the db. You sure you have made an account and all that?

if you could include the db.ini file it might help
Reply With Quote
  #5  
Old 02-13-2003, 11:12 PM
eltharin
Fire Beetle
 
Join Date: Jul 2002
Posts: 24
Default

my db.ini:

# READ README.TXT!

[Database]
host=localhost
user=YourMysqlUsername
password=YourMysqlPassword
database=eq


### --- This file tells world.exe what computer mySQL is on. Host should
### --- be left "localhost" unless mysql is on a differant computer than world.exe.
__________________
eltharin
frenchman
eltharindanselune@lycos.fr
Reply With Quote
  #6  
Old 02-13-2003, 11:44 PM
eltharin
Fire Beetle
 
Join Date: Jul 2002
Posts: 24
Default

i dont have installed mysql, because i would like just play with minilog

but if i must create it, can you explaine me ?
__________________
eltharin
frenchman
eltharindanselune@lycos.fr
Reply With Quote
  #7  
Old 02-14-2003, 01:36 AM
Fox
Fire Beetle
 
Join Date: Nov 2002
Location: Svenneland
Posts: 18
Default

oh, ya if you want to be able to play you have to setup mysql.
first you need to get it, http://www.mysql.com/ I got version 3.23 or something if there is anything newer it should be fine too.

Then Install it (remeber what user/pass you set) and reboot you computer.


open up your mysql/bin dir and copy the db.sql in to it
then start up mysql.exe
at that promt type the following (hit enter between )
Code:
create database eq
Code:
use eq
Code:
source db.sql
(pray that it works...)
Code:
INSERT INTO account SET name='eqemu', password='eqemu', status=200;
and then exit it.

next open your db.ini and change the user and password to what you set it too.
[Database]
host=localhost
user=YourMysqlUsername
password=YourMysqlPassword
database=eq

that should be it (I think).
Reply With Quote
  #8  
Old 02-14-2003, 04:20 AM
eltharin
Fire Beetle
 
Join Date: Jul 2002
Posts: 24
Default

i have created my server but when i lunch it, i have error message:
string not found (500) with minilog or without
__________________
eltharin
frenchman
eltharindanselune@lycos.fr
Reply With Quote
  #9  
Old 02-14-2003, 08:22 AM
Tugurce
Hill Giant
 
Join Date: Feb 2003
Location: Texas
Posts: 119
Default

I haven't seen that error before...can you give us the updated contents of your miniloginaccount.ini file?
Reply With Quote
  #10  
Old 02-14-2003, 10:16 AM
eltharin
Fire Beetle
 
Join Date: Jul 2002
Posts: 24
Default

this error is when i lunch minilog or when i lunch my own server internet.

miniloginaccounts.ini is:

172.197.117.121 eqemu eqemu
__________________
eltharin
frenchman
eltharindanselune@lycos.fr
Reply With Quote
  #11  
Old 02-14-2003, 10:45 AM
DeletedUser
Fire Beetle
 
Join Date: Sep 2002
Posts: 0
Default

You need the english version of Everquest, not the french / german version....
Reply With Quote
  #12  
Old 02-14-2003, 11:13 AM
eltharin
Fire Beetle
 
Join Date: Jul 2002
Posts: 24
Default

i have english version
__________________
eltharin
frenchman
eltharindanselune@lycos.fr
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 01:21 PM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3