PDA

View Full Version : TCPConnection::Connect(): connect() failed


Proximo
09-26-2003, 03:12 AM
Any insight into this?

Failed to open log file: logs/eqemu_world.log
[Status] Using database 'eq' at localhost
[Status] CURRENT_WORLD_VERSION:EQEMu 0.5.0
[Status] Loading variables..
[Status] Loading zones..
[Status] Loading items..
Failed to open log file: logs/eqemu_error_world.log
[Error] LoadEMuShareMemDLL::Load() failed to load library 'libEMuShareMem.so'. Error=0
[Error] Error: Could not load item data. But ignoring
[Status] LoginServer.ini read.
[Status] Loading guild ranks..
[Status] Loading addon.ini..
[Status] Loading EQ time of day..
[Status] Deleted 0 stale player corpses from database
[Status] Deleted 0 stale player backups from database
You may already be a winner... of the darwin award.
TCP listening on: 127.0.0.1:9000
World server listening on: 127.0.0.1:9000
Error: LoginServer::Connect: 'TCPConnection::Connect(): connect() failed. Error: Connection refused'
Error: LoginServer::Connect: 'TCPConnection::Connect(): connect() failed. Error: Connection refused'


My loginserver.ini


[LoginServer]
loginserver=loginserver1.eqemulator.net
loginport=5999
worldname=Proximo
worldaddress=127.0.0.1
locked=false

[WorldServer]
Defaultstatus=0
Unavailzone=

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




[/quote]

Scorpious2k
09-26-2003, 03:24 AM
Several things...

You are running 5.0 and trying to connect to the 4.4 login server. Change this

loginport=5999

to this

loginport=5997

then change this

worldaddress=127.0.0.1

to use your real IP address not 127.0.0.1

I'm not sure the line

ServerPort=5999

needs to read

ServerPort=5997

or not, we're not running 5.0 yet.... good luck

Merth
09-26-2003, 03:30 AM
Also,

loginserver=loginserver1.eqemulator.net

to

eqlogin1.eqemulator.net

Where did you see loginserver1.eqemulator.net being used? We should clear that up if it is someplace it shouldn't be.

Take a look at the howto sticky in the tutorial section for full instructions.

krich
09-26-2003, 03:23 PM
A couple more things...

Failed to open log file: logs/eqemu_error_world.log
Create a logs directory in your server directory and you'll get some additional logging capabilities automagically.


[Error] LoadEMuShareMemDLL::Load() failed to load library 'libEMuShareMem.so'. Error=0
This means you need to put the following line in your login script or your EQEMu server startup script:
export LD_LIBRARY_PATH=./
or just copy the libEMuShareMem.so file to /usr/lib. But don't forget to copy it there every time you recompile it.

Regards,

krich