Hi.
I have edited my unrealircd.conf, and get these errors when I try to start ./ircd ...
* Loading IRCd configuration ..
* unrealircd.conf:741: Ignoring extra close brace
* unrealircd.conf:741 Ignoring extra semicolon
[warning] unrealircd.conf:270: listen with SSL flag enabled on a non SSL compile
* unrealircd.conf:732: unknown directive hosts
[error] set::hosts::global is missing
[error] set::hosts::admin is missing
[error] set::hosts::servicesadmin is missing
[error] set::hosts::netadmin is missing
[error] set::hosts::coadmin is missing
[error] 5 errors encountered
[error] IRCd configuration failed to pass testing
Any idea what I should do??
/* on-oper host */
hosts {
local "locop.it-guru.info";
global "ircop.it-guru.info";
coadmin "coadmin.it-guru.info";
admin "admin.it-guru.info";
servicesadmin "servicesadm.it-guru.info";
netadmin "netadmin.it-guru.info";
host-on-oper-up "no";
};
Please help me!!
-
SiLverFerret
- Posts: 3
- Joined: Tue May 24, 2005 7:41 pm
- Location: Drammen, Norway
Please help me!!
--
SiLverFerret
SiLverFerret
that hosts { } stuff should also be itself in a set { } block (nested).
Anyway:
This is usually a serious problem as well -- strange, there isn't any FAQ item about that yet.
In short: there's something messed up with }; or ;'s in your conf. The specific error on 741 means you used a }; when it wasn't needed, now you could just remove it but perhaps it means more than that: that your block is in the wrong place / a missing <something> { several lines above line 741.
Anyway:
Code: Select all
* unrealircd.conf:741: Ignoring extra close brace
* unrealircd.conf:741 Ignoring extra semicolon In short: there's something messed up with }; or ;'s in your conf. The specific error on 741 means you used a }; when it wasn't needed, now you could just remove it but perhaps it means more than that: that your block is in the wrong place / a missing <something> { several lines above line 741.
-
SiLverFerret
- Posts: 3
- Joined: Tue May 24, 2005 7:41 pm
- Location: Drammen, Norway
Can you please type for me what I should do ? I'm kinda lost.. Since I'm from Norway, I don't understand English that good.. Sorry :/that hosts { } stuff should also be itself in a set { } block (nested).
Btw, I removed some of the brackets..
Now I get this:
* Loading IRCd configuration ..
[warning] unrealircd.conf:270: listen with SSL flag enabled on a non SSL compile
* unrealircd.conf:732: unknown directive hosts
[error] set::hosts::global is missing
[error] set::hosts::admin is missing
[error] set::hosts::servicesadmin is missing
[error] set::hosts::netadmin is missing
[error] set::hosts::coadmin is missing
[error] 5 errors encountered
[error] IRCd configuration failed to pass testing
--
SiLverFerret
SiLverFerret
looks like your also using ssl flags somewhere when your IRCD is not compiled with SSL support.SiLverFerret wrote:Can you please type for me what I should do ? I'm kinda lost.. Since I'm from Norway, I don't understand English that good.. Sorry :/that hosts { } stuff should also be itself in a set { } block (nested).
Btw, I removed some of the brackets..
Now I get this:
* Loading IRCd configuration ..
[warning] unrealircd.conf:270: listen with SSL flag enabled on a non SSL compile
* unrealircd.conf:732: unknown directive hosts
[error] set::hosts::global is missing
[error] set::hosts::admin is missing
[error] set::hosts::servicesadmin is missing
[error] set::hosts::netadmin is missing
[error] set::hosts::coadmin is missing
[error] 5 errors encountered
[error] IRCd configuration failed to pass testing
Never argue with an idiot. They will bring you down to their level, then beat you with experience.
-
SiLverFerret
- Posts: 3
- Joined: Tue May 24, 2005 7:41 pm
- Location: Drammen, Norway