Page 1 of 1
error starting ircd..unreal.conf error
Posted: Sat Jan 15, 2005 3:32 pm
by cucina
* Loading IRCd configuration ..
* unrealircd.conf:3: Ignoring extra data
* unrealircd.conf:60: loadmodule <src/modules/commands.so>: failed to load: Cannot open "tmp/B4CD1C21.commands.so>"
[error] IRCd configuration failed to load
the map exist but no file... i have tryed to re install my config but doesn't help put all options to default but it won't work
what can be wrong

Posted: Sat Jan 15, 2005 3:40 pm
by Dukat
http://www.vulnscan.org/UnrealIrcd/faq/#74
You should also fix the error on line 3, btw
Posted: Sat Jan 15, 2005 3:53 pm
by cucina
fixst problem on line 3 but the other one not
Posted: Sat Jan 15, 2005 4:03 pm
by Dukat
Did you as told in the FAQ?
Posted: Sat Jan 15, 2005 4:23 pm
by cucina
yes my config is standing default so than it should work to
Posted: Sat Jan 15, 2005 5:37 pm
by Dukat
No, if you messed around with ./Config options or moved the dir or ...
What is the output of "ls -al src/modules/commands.so" ?
Posted: Sat Jan 15, 2005 5:58 pm
by cucina
this is the output
-rwxr-xr-x 1 root wheel 2525085 Jan 14 22:36 src/modules/commands.so
( ls -al src/modules/commands.so )
Posted: Sun Jan 16, 2005 9:30 am
by Dukat
Look ok... (Well, you shouldn't install/run it as root...

)
Anyway - the easiest way is to reinstall, we could discuss ages here to trace it down...
(Please do it not as root this time but as the user you will be running unreal from.)
Remove the complete Unreal-dir
Download the latest version (yes, there's a new one)
Run "./Config" and use the defaults everywhere
make
Posted: Fri Feb 04, 2005 5:19 am
by dnsx
commands.so is in Unreal/modules.
Write the whole path to the module,
e.g.
loadmodule /usr/local/Unreal/modules/commands.so";
Posted: Fri Feb 04, 2005 12:32 pm
by w00t
This isn't necessary, there is such a thing as relative paths.
Posted: Fri Feb 04, 2005 4:09 pm
by codemastr
* unrealircd.conf:60: loadmodule <src/modules/commands.so>: failed to load: Cannot open "tmp/B4CD1C21.commands.so>"
Why exactly did you decide to put in < and >?
Posted: Sat Feb 05, 2005 2:49 am
by dnsx
w00t wrote:This isn't necessary, there is such a thing as relative paths.
Ok...
I had the same problem and I couldnt get it to work, until I wrote the whole path to commands.so.
(FreeBSD 5.3)
Re: error starting ircd..unreal.conf error
Posted: Sat Feb 05, 2005 7:00 pm
by Shelluser
cucina wrote:* Loading IRCd configuration ..
* unrealircd.conf:3: Ignoring extra data
* unrealircd.conf:60: loadmodule <src/modules/commands.so>: failed to load: Cannot open "tmp/B4CD1C21.commands.so>"
[error] IRCd configuration failed to load
Make sure that the account which is running the ircd has write access in etc/tmp. In this case the ircd is trying to create a file in the tmp directory but fails.
Posted: Sat Feb 05, 2005 9:13 pm
by codemastr
How about no and instead listen to me? I already told him EXACTLY what the problem is. His config file reads:
loadmodule <src/modules/commands.so>;
it should read:
loadmodule "src/modules/commands.so";
it has NOTHING to do with write permissions.