Here is what's happening.
My unreal ircd is up and running, working perfectly and I've compiled Ircservices to be used with this ircd.
When I run ./ircservices from the shell I get the following response in the shell window:
Initialization successful, starting IRC Services.
All looks good, but when I then examine the ircservices.log I see the following:
Code: Select all
IRC Services 5.0.23 starting up
httpd/main: Listening on :80
FATAL: Can't connect to server (127.0.0.1:7029): Connection refusedHere is my unrealircd.conf statements:
Code: Select all
link services.mynet.net
{
username *;
hostname 127.0.0.1;
bind-ip 127.0.0.1;
port *;
hub *;
password-connect "nopass";
password-receive "nopass";
class servers;
options {
/* Note: You should not use autoconnect when linking services */
};
};
ulines {
services.mynet.net;
};
Code: Select all
RemoteServer 127.0.0.1 7029 "nopass"
ServerName "services.mynet.net"
Any and all help here would be greatly appreciated.