Anope IRC Services

Anope Support => 1.6.x (Read Only) => Topic started by: Victor on June 08, 2006, 10:17:00 PM

Title: the old fatal error
Post by: Victor on June 08, 2006, 10:17:00 PM
[Jun 08 15:29:52.087631 2006] Databases loaded
[Jun 08 15:29:52.087857 2006] debug: Saving FFF databases
[Jun 08 15:31:07.096925 2006] FATAL: Can't connect to server: Operation timed out

i checked the services conf doesnt work and the link block
Title:
Post by: Charles Kingsley on June 08, 2006, 10:18:31 PM
Timed out would more than likely mean a firewall issue.

Paste your
ServerName line from services.conf
RemoteServer line from services.conf
Listen blocks from the ircd conf
Link block from the ircd conf

Or do yourself a favour and come onto irc.anope.org #anope
Title:
Post by: Victor on June 09, 2006, 12:54:17 AM
RemoteServer    localhost 6697 "loginmk"
#RemoteServer2  localhost 6667 "mypass"
#RemoteServer3  localhost 6667 "mypass"


ServerName  "services.gamesxposed.net"


listen         216.86.156.132:6667
{
        options
        {

                clientsonly;
        };
};

listen         216.86.156.132:8067;
listen         216.86.156.132:6667;


link services.gamesxposed.net
{
 username *;
 hostname 127.0.0.1;
 port *;
 bind-ip 127.0.0.1;
 password-connect "loginmk";
 password-receive "loginmk";
 class servers;
};

ulines {
 services.gamesxposed.net;
};
Title:
Post by: katsklaw on June 09, 2006, 02:11:50 AM
you don't have a listen block for 127.0.0.1 on port 6697. Also if you use 127.0.0.1 in the link block .. you should use it in the RemoteServer as well. Yes, they are the same but by making everything absolutely identical can save possible issues.

You have 2 listen blocks for port 6667 on the same IP .. I'm suprised the ircd even started.

[Edited on 9-6-2006 by katsklaw]