I'm trying to get ircservices (5.0.57) connected to my unrealircd (3.2.4), both are vanilla, fresh out of the box, minimally configured from the sample config files, with just what look like the essential local changes to get things going.
They are both running on the same machine, although I'm using different hostnames. Appropriate aliases to the same server A record are in the DNS for both irc.my.domain and services.my.domain.
Here's what I'm getting in the ircservices.log when I fire up it up. Note that I've changed my domain name to my.domain to protect the innocent, and I'm just showing the few lines before and after the "broken pipe" message, everything else looks kosher:
Code: Select all
[Jun 10 16:10:30.661803 2006] debug: Sent: NICK HelpServ 1 1149973830 vb-admin my.domain services.my.domain 0 +Sqd my.domain :Help Server
[Jun 10 16:10:30.662068 2006] debug: Received: :irc.my.domain NOTICE AUTH :*** Found your hostname (cached)
[Jun 10 16:10:30.662627 2006] debug: Saving databases
[Jun 10 16:10:30.667889 2006] Read error from server: Broken pipe
[Jun 10 16:10:30.668143 2006] debug: Unloading module `misc/xml-import'My unrealircd.conf Link and Uline entries read:
Code: Select all
link services.my.domain
{
username [email protected];
hostname 127.0.0.1;
bind-ip *;
port 7777;
hub *;
password-connect "some.password";
password-receive "some.password";
class servers;
options {
};
};
ulines {
127.0.0.1;
};Code: Select all
RemoteServer 127.0.0.1 7777 "some.password"
ServerName "services.my.domain"
ServiceUser "[email protected]"The *.db services files are being written to, with the modification date updating each time I try and run services, and all file permissions look good.
Any ideas gratefully received!
-- hugh