Page 1 of 1

Magick II Problem

Posted: Sat Feb 19, 2005 9:19 pm
by AngeloDS
Well, my servies aren't working.

I have ->

Code: Select all

class servers {
	pingfreq 90;
	maxclients 10; /* Max servers we can have linked at a time */
	sendq 1000000;
	connfreq 100; /* How many seconds between each connection attempt */
};

allow {
	ip *;
	hostname *;
	class servers;
	maxperip 10;
};

listen *:9666 {
	options {
		serversonly;
	};
};

ulines {
	services.(server name).com;
};

link services.(server name).com {
	username *;
	hostname 127.0.0.1;
	bind-ip 127.0.0.1;
	port 9666;
	password-connect "starter";
	password-receive "starter";
	class servers;
};

set {
	services-server services.(server name).com;
}

Code: Select all

SERVER_NAME = services.(server name).com
SERVER_DESC = (server name) IRC Services
SERVICES_USER = services
SERVICES_HOST = (server name).com
OWNUSER = FALSE
SETMODE = 
BIND = 
REMOTE_1 = 127.0.0.1|9666|(password here)|1|1
LEVEL = 1
MAX_LEVEL = 5
LAGTIME = 15s
STOP = FALSE

Code: Select all

19 Feb 2005 13:31:02.812 | STARTUP  | Magick 2.0 startup procedure complete.
19 Feb 2005 13:31:02.812 | STARTUP  | Starting events engine ...
19 Feb 2005 13:31:02.822 | INFO     | Connecting to server [127.0.0.1]:9666 ...
19 Feb 2005 13:31:02.832 | INFO     | Connection established and authenticated to server [127.0.0.1]:9666.
19 Feb 2005 13:31:03.814 | NOTICE   | SERVER MESSAGE (ERROR): Closing Link: services.agodbey.com[127.0.0.1] (Colliding server numeric (choose another))
I'm getting that for some reason.

Posted: Sat Feb 19, 2005 10:06 pm
by White_Magic
Services are the Server both have the same Server Numeric (this can be found in the " ME " block of Unreal, change the " numeric " part)
me {
name <name-of-server>;
info <server-description>;
numeric <server-numeric>; <-- this
};
change the number u have in ur ircd to something else.
then /rehash the ircd and try connecting services again

Posted: Sat Feb 19, 2005 10:34 pm
by Stealth
IIRC, a numeric change requires a restart. (someone should really document the stuff that needs a restart)

Posted: Sun Feb 20, 2005 5:19 am
by White_Magic
thanks for the info stealth :D

Posted: Mon Feb 21, 2005 4:44 pm
by codemastr
Stealth wrote:IIRC, a numeric change requires a restart. (someone should really document the stuff that needs a restart)
Well technically it doesn't. You simply can not change the numeric while you are linked to a network. If the server is delinked, then a /rehash works fine.