Page 1 of 2

Errors On Service.log

Posted: Sun Jul 11, 2004 10:04 pm
by DarkSaiyan
When I startup UnrealIrcD it says " Could not Start unrealirc on local computer error 1067 the process terminated unexpectedly then when i check the service.log from unreal directoy it shows this
[error] unrealircd.conf:328: unknown directive listen::username
[error] unrealircd.conf:329: unknown directive listen::hostname
[error] unrealircd.conf:330: unknown directive listen::bind-ip
[error] unrealircd.conf:331: unknown directive listen::port
[error] unrealircd.conf:332: unknown directive listen::hub
[error] unrealircd.conf:333: unknown directive listen::password-connect
[error] unrealircd.conf:334: unknown directive listen::password-receive
[error] unrealircd.conf:335: unknown directive listen::class
[error] unrealircd.conf:340: unknown listen option 'autoconnect'
[error] unrealircd.conf:342: unknown listen option 'zip'

I looked up on the config i did eveything i was meant to do but still getting same errror could someone Please help me

Posted: Sun Jul 11, 2004 10:09 pm
by katsklaw
those are all link directives .. not listen directives ... check your link blocks.

Posted: Sun Jul 11, 2004 10:22 pm
by DarkSaiyan
What does that mean what should it be

Posted: Sun Jul 11, 2004 10:26 pm
by katsklaw
it means that it appears you have a link block labelled listen ... check your unrealircd.conf Read example.conf in the doc directory for an example link block.

Posted: Sun Jul 11, 2004 10:31 pm
by DarkSaiyan
Am I meant to edit it to put hostname and stuff if so which part the top part are do i just edit the eg it shows

Posted: Sun Jul 11, 2004 10:33 pm
by katsklaw

Code: Select all

link            hub.mynet.com
{
	username	*;
	hostname 	1.2.3.4;
	bind-ip 	*;
	port 		7029;
	hub             *;
	password-connect "LiNk";
	password-receive "LiNk";
	class           servers;
		options {
			/* Note: You should not use autoconnect when linking
			 * services
			 */
			autoconnect;
			ssl;
			zip;
		};
};
This is directly from example.conf ... please read the supporting docs for more information.

Posted: Sun Jul 11, 2004 10:35 pm
by DarkSaiyan
yeh i read the documentions but still dont understand am i meant to edit that part like put my ip and stuff there

Posted: Mon Jul 12, 2004 5:45 am
by w00t
What he means is you have something like listen {} rather than link {}

Posted: Wed Jul 14, 2004 10:25 pm
by DarkSaiyan
but how do i make it back normal i dont know which part to change

Posted: Wed Jul 14, 2004 10:51 pm
by w00t

Code: Select all

listen            hub.mynet.com  { ...omitted for clarity... }
You probably have something like that. Change it to

Code: Select all

link            hub.mynet.com { ...omitted for clarity... }

Posted: Thu Jul 15, 2004 2:42 pm
by DarkSaiyan
Hmm it is already at link hmm i dont know what else coud be wrong

Posted: Fri Jul 16, 2004 5:45 am
by katsklaw
Well, Unreal doesn't just create errors at random .. so you HAVE to have something else wrong .. read your conf line by line.

Posted: Fri Jul 16, 2004 6:02 pm
by DarkSaiyan
yeh i did nothing seems to be wrong so am confused now my mate said its cuz i editing the syntax part and not the eg parts so am confused

Posted: Sun Jul 18, 2004 11:49 am
by w00t
/me gives up :(

Posted: Sun Jul 18, 2004 2:29 pm
by AngryWolf
To DarkSaiyan: sorry, but the UnrealIRCd configuration format seems to be very unfamiliar for you, am I right? If yes, that's the problem. If no, and UnrealIRCd still shows those error messages, then perhaps you editted a wrong file. All I can do is guessing, because I can't see what you are doing...