• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Error crash server

Vedovi

New Member
Joined
Jul 22, 2008
Messages
100
Reaction score
0
Hello , help me in an error

my server crash without error in the console, an error appears in the log data/logs/admin.log

error:

(Error - void ServicePort::eek:pen(IPAddressList, uint16_t)) NETWORK: bind: Address already in use

OS: Debian 7 64bits
 
Last edited:
Windows
Code:
the winsock fix
start run cmd and type:
netsh winsock reset catalog
and after
netsh int ip reset reset.log hit

source: http://otland.net/threads/error-admin-log.149883/page-2

Ubuntu
Code:
ifconfig eth0|grep "inet addr"|cut -d : -f 2 |cut -d " " -f 1
or
sudo /etc/init.d/networking restart

source:http://ubuntuforums.org/showthread.php?t=1313193&p=8491499#post8491499
 
Last edited:
Not fixing :/

error:
[24/12/2014 16:38:18] (Error - void ServicePort::eek:pen(IPAddressList, uint16_t)) NETWORK: bind: Address already in use
 
I actually have the same error:
Code:
[25/12/2014 0:1:19] (Error - void ServicePort::open(IPAddressList, uint16_t)) NETWORK: bind: Address already in use
I tried this:
Code:
sudo /etc/init.d/networking restart
But it's still happening, is there a way to check if the command worked?
 
The server has been restarted and formatted.

I used the command:
Code:
netstat -tulpn | grep 7171
result:
Code:
tcp        0      0 127.0.0.1:7171          0.0.0.0:*               LISTEN      1102/tfs
tcp        0      0 myipserv:7171      0.0.0.0:*               LISTEN      1102/tfs
It will be a setting in config.lua?
Code:
    worldId = 0
    ip = "myipserv"
    worldType = "open"
    bindOnlyGlobalAddress = false
    loginPort = 7171
    gamePort = "7172"
    statusPort = 7171
    loginOnlyWithLoginServer = false
 
Back
Top