• 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 No one can connect.

iLeet

New Member
Joined
Jul 28, 2008
Messages
130
Reaction score
0
Not too sure what i'm doing wrong here..
I've hosted for years without this problem.
When starting TFS I get the error
[9/5/2015 23:0:6] (Error - void ServicePort::eek:pen(IPAddressList, uint16_t)) NETWORK: Address already in use

also
user@SERVER:/otserver/trunk$ sudo netstat -tulpn | grep 7171
tcp 0 0 127.0.1.1:7171 0.0.0.0:* LISTEN 6149/dev
tcp 0 0 127.0.0.1:7171 0.0.0.0:* LISTEN 6149/dev
tcp 0 0 192.168.1.115:7171 0.0.0.0:* LISTEN 6149/dev

Router is in DMZ mode and works fine, since people can access my website
 
the error message is telling you that the socket is binded to annother process.

can you send the output of this command?
sudo netstat -lanp | grep -E '7171|7172'
 
Back
Top